OBIEE Answers, Publisher, Installation, Configuration and work around tips. I record all issues and finding in oracle BI, that I can refer back later, or others can use for troubleshooting. I have extensive experience on OBIEE 10g version previously although currently I am on OBIEE 11g
Wednesday, May 2, 2012
Problem with using domain name with user ID when logging in.
Monday, December 28, 2009
Multiple LDAP servers
OBIEE does allow us to add multiple LDAP server. We needed this functionality as some of the global users were on different domain than the majority of users. Apparently when more than one LDAP servers are configured, BI attempts to get user authenticated with first server in the list, if it fails then it tries using second LDAP server.
This method can also be user for implementing redundant LDAP servers.
Thursday, February 26, 2009
Changing log level for LDAP users
Looking at session variables I found a work around for this. Navigate to system session variables, right click and create a 'New LOGLEVEL'. You can give default value of 2, or any other which will get applied to all users.

Next, create a session Initialization block loglevel and select any database as datasource. In the query, you can specify following:
select case when (':USER') = 'user1' then to_number('5',0) else to_number('2',0) end from dual
Select target variable as LOGLEVEL. Doing this will make log level of 5 for user1 but it will remain as 2 for all others.
Also, although valid log level value is upto 7, actual value in current version is only upto 5. Values 6 and 7 is reserved for future use.