Google Search

Monday, May 5, 2014

Unlock xelsysadmin account in OIM

Unlock xelsysadmin account in OIM 11g R2 PS2

xelsysadmin account gets locked then we can unlock in 2 ways



  1. If you have any admin account, then login using that account and unlock the user. 
  2. Update the USR table to unlock the xelsysadm account using below commands.

 update usr set usr_login_attempts_ctr=0 where usr_login=’XELSYSADM’;
 update usr set usr_locked=0 where usr_login=’XELSYSADM’;
 Commit;

No comments:

Post a Comment