I am sure you reading this post because you've got this ORA-01033 error message.
Quickly without wasting time here is the solution:
I have noticed this error happened when the database has not been properly shutdown .
- Go to the command prompt CMD:
- > set oracle_sid= your_sid_name
- > sqlplus /nolog
- SQL> connect / as sysdba
- output: connected
- SQL> shutdown abort
- output: ORACLE instance shut down
- SQL> startup nomount
- output: ORACLE instance started
- SQL> alter database mount
- output: Database altered
- SQL> alter database open
- output: Database altered
- Done !
No comments:
Post a Comment