2 Day DBA > Managing Users and Security > Changing Administrative Use...
Changing Administrative User Passwords |
Previous |
Next |
To change the password for user SYS
or SYSTEM
:
Using SQL Command Line, connect to the database as SYSDBA
.
See "Logging In and Connecting to the Database as SYSDBA" for instructions.
Enter one of the following commands:
ALTER USER SYS IDENTIFIED BY newpassword; ALTER USER SYSTEM IDENTIFIED BY newpassword;
where newpassword
is the desired new password.