Importing / Creating Users in OBIEE+

By Dhwani Shah - Last updated: Tuesday, October 6, 2009 - Save & Share - 3 Comments

Requirement : Often time its really a pain to create users in bulk.So below script will be helpful to create users with default password.

Step 1: Create the script as shown below.
This script basically creates a declaration syntex for OBIEE.

Run the SQL Command like to Generate the File Called : userImport.udml (or you may use excel or something else )

SELECT
‘DECLARE USER “‘|| Sales_person ||’” AS “‘||Sales_person ||’” UPGRADE ID 1121 FULL NAME {‘||Sales_Person_Name||’} PASSWORD ”’Welcome”’ PRIVILEGES ( READ);’ FROM tbl_sales_person
Modify the script according to the usage.

save the output of the above sql command to a file called
userImport.udml

Step 2: Run the command to load the users
Once above file is ready locate the exe file called nqudmlexec.exe

(History : nqudmlexec.exe – check the name, it starts with nq. Siebel had acquired nQuire Software in 2001. Still lots of logs, exes still have prefix nq)

Run the below command to
C:\OracleBI\server\Bin>nqudmlexec -U -P
I userImport.udml -B Security.rpd -O Security1.rpd

Importing  OBIEE Users to repository

Importing OBIEE Users to repository

Posted in ALL, OBIEE Administrator, OBIEE Security • Tags: , , Top Of Page

3 Responses to “Importing / Creating Users in OBIEE+”

Comment from ankit Jain
Time December 14, 2011 at 6:09 am

Hi… Nice blog but it would be great if you could please explain in details for a better follow up.

Thanks
Ankit

Comment from Ankit Jain
Time December 14, 2011 at 6:10 am

Hii
Nice Blog. Could you please elaborate more on this topic for beter follow up using some example.

Comment from Dhwani Shah
Time December 14, 2011 at 11:11 pm

Sure Ankit ,
I will- sometimes its just time crunch. I will add more examples here

Write a comment