Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Change sys & sysman passwords 2

Status
Not open for further replies.

JuliasDad

Programmer
Jun 5, 2001
2
US
How do I change the passwords for sys & system? I don't have a management server. I use the DBA Studio and launch it directly instead of choosing the "Login to the Oracle Management Server" option.
 
Hi,

Connect to your instance with sqlplusw and user you want to modify password (system for example) and then

alter user system identified by new_password;
 
As long as you are connected to the database via DBA Studio as a user with sufficient privs,you should be able to select the Security tree branch, then Users then SYS. You should then be able to change the password in the right-hand pane.

Alternatively you can change the password via SQL*PLUS - just connect then issue:

alter user sys identified by new-password;

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top