Unlock xelsysadmin account in OIM 11g R2 PS2
xelsysadmin account gets locked then we can unlock in 2 ways
update usr set usr_login_attempts_ctr=0 where usr_login=’XELSYSADM’;
update usr set usr_locked=0 where usr_login=’XELSYSADM’;
Commit;
xelsysadmin account gets locked then we can unlock in 2 ways
- If you have any admin account, then login using that account and unlock the user.
- 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