Have you created a database ?
In Oracle, users are created only within a database.
When an Oracle database is created 2 default administrative users are created.
1. SYS
2. SYSTEM
Passwords for these users depends on the Oracle version. If the version is lower than 9i (8.17 , 8.16, ..);
CHANGE_ON_INSTALL is the default password for SYS and
MANAGER is the default password for SYSTEM.
But in 9i there are not default passwords. At the end of the creation of the database you will be prompt for passwords for SYS and SYSTEM.
And if you have a database and you don't know the passwords, try follwing steps;
If your OS is Windows login as the user who installed Oracle (normally Administrator). If it's Linux or UNIX login as Oracle.
Then try the commands:
If Windows : set ORACLE_SID=<DB name>
If Linux or UNIX : export ORACLE_SID=<DB name>
Then:
'sqlplus /nolog'
You will get a SQL> . Then connect to the database
If the Oracle version is 9i :
connect / as sysdba
If othe Oracle version is other than 9i :
connect internal
Then you will be connected to the database with full privileges. Now you can get changed the passwords for SYS and SYSTEM.
alter user SYSTEM identified by <new password>
Have fun. Oracle is a great DBMS.
Main Topics
Browse All Topics





by: catchmeifuwantPosted on 2004-03-07 at 20:29:05ID: 10538164
Default Oracle accounts are:
nnect_stri ng> as sysdba" tring> as sysdba"
nect_strin g> ring>
er_c.html
sys/change_on_install
system/manager
To login in from sqlplus in 9i:
sqlplus "sys/change_on_install@<co
sqlplus "system/manager@<connect_s
In Oracle 8i
sqlplus sys/change_on_install@<con
sqlplus system/manager@<connect_st
Creating an user:
http://www.ss64.com/ora/us