Oracle command to lock,unlock and change password of a user
Oracle commands
alter user user_name account unlock;
user_name is the user whose password you wish to change.
new_password is the new password to assign.
user_name must be substituted with the real username.
new_password with the password.
- to lock and unlock a user
alter user user_name account unlock;
- To change a user's password in Oracle,
user_name is the user whose password you wish to change.
new_password is the new password to assign.
user_name must be substituted with the real username.
new_password with the password.
Comments
Post a Comment