Following steps show how to setup the password for “SYSTEM” user.
NOTE: This was tested on Windows 7.
1: Make sure the database service is running. This can be checked by running "Start Database" option. If it is running, you will see following output.
2: Type following commands to connect to the database without using password.
sqlplus /nolog connect / as sysdbaNow you are connected as "SYSTEM" user with full DBA rights. Therefore, you can go ahead and change the password of "SYSTEM" user.
3: Type in the following command to change the password.
alter user {username} identified by {password};
Example:
alter user system identified by oatsystem;
4: Now you should be able to login to Database homepage as "system" user with the new password.
No comments:
Post a Comment