oracle12c - I am getting a message whenever I connect my database in oracle 12c 'Your password is soon going to expire'. How do I change the password? -
will connection still work after change password?
once logged in, use command
alter user user_name identified new_password;
to change password. more info here
replace user_name
user name.
Comments
Post a Comment