ORA-01033: ORACLE initialization or shutdown in progress [message #70746] |
Fri, 19 July 2002 17:32 |
Jeff
Messages: 63 Registered: July 1999
|
Member |
|
|
When I try to login to SQL Plus using System/manager and my host I get the following error:
ORA-01033: ORACLE initialization or shutdown in progress. When I check my services the listener is started. What else could be the cause?
Thanks
|
|
|
|
|
|
Re: ORA-01033: ORACLE initialization or shutdown in progress [message #70787 is a reply to message #70759] |
Tue, 23 July 2002 06:15 |
ctg
Messages: 146 Registered: July 2002
|
Senior Member |
|
|
Look into your init.ora file, what is REMOTE_LOGIN_PASSWORDFILE set to?
If it is set to SHARED or EXCLUSIVE, give this a try:
got to your ORACLE_HOME/Database
rename your password file (pwd<SID>.ora)
then in a dos window use the orapwd utility to recreate the password file.
EX: orapwd file=ORACLE_HOME/database/pwd<SID>.ora password=oracle
then go to sqlplus
SQL> connect sys/oracle as sysdba
SQL> select instance_name, status from v$instance;
this will show what mode your database is in.
SQL> ALTER DATABASE MOUNT/OPEN;
SQL> ALTER USER sys IDENTIFIED BY new_pwd;
|
|
|