Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Can't get logged into database
>> When I created the database I selected a password, yet I don't know what
>> value to put into the "User Name" field.
As others have said, the password you supplied during database creation was the SYS password. Unlike what others have said, I would not use this account for much other than starting and stopping the database or running Oracle-supplied packages.
The user you should use for general database administration should be SYSTEM. The default password for the system user will be "manager".
Once you log in to SQL*Plus successfully as MANAGER, I'd change it's password to something other than the default with the following command:
alter user system identified by <new_password>;
HTH --g Received on Thu Dec 29 2005 - 07:26:54 CST
![]() |
![]() |