How to Unlock XELSYSADM account in OIM


If Xelsysadm account gets locked in OIM ther are 2 ways to unlock it.
  • If you have any other adminstrator account, login using that acount and unlock the user. 
  • Update the usr table to unlock the xelsysadm account using below commands.
  1.       update usr set usr_login_attempts_ctr=0 where usr_login=’XELSYSADM’;
  2.       update usr set usr_locked=0 where usr_login=’XELSYSADM’;
  3.       Commit;

No comments:

Post a Comment