There are two ways to modify the Oracle database password: Use the SQL command: ALTER USER
IDENTIFIED BY ; Use the Oracle Enterprise Manager console: Expand the Security tab> User > Right-click the user > Reset password.
Oracle Database Password Changing Guide
How to change the Oracle database password?
There are two main ways to change the Oracle database password:
Use SQL command to change password
<code class="sql">ALTER USER username IDENTIFIED BY new_password;</code>
Among them,
username
is the user whose password you want to changenew_password
is the new password For example:
<code class="sql">ALTER USER scott IDENTIFIED BY tiger;</code>
This will change the password of user scott to tiger.
Use Oracle Enterprise Manager Console to change the password
Note
If you forget your password, you can:
The above is the detailed content of How to change oracle database password. For more information, please follow other related articles on the PHP Chinese website!