Change Your Own Password in an Oracle Database
This article describes how to change the password for your own user in an Oracle database.
oracle miscconfigurationintermediate
by OracleDba
10 views
This article describes how to change the password for your own user in an Oracle database.
1234567
conn my_user/MyPassword123@orcl
alter user my_user identified by MyNewPassword123;
alter user my_user identified by MyNewPassword123 replace MyPassword123;
alter user my_user identified by "MyNewPassword123#";1234567
SQL> password
Changing password for MY_USER
Old password: ********
New password: ********
Retype new password: ********
Password changed
SQL>12345678910
conn my_user[schema_owner]@orcl
-- Connect to my user.
conn my_user@orcl
-- Change password.
alter user my_user identified by MyNewPassword123;
-- Make a proxy connection again.
conn my_user[schema_owner]@orclPlease to add comments
No comments yet. Be the first to comment!