Ora Error
Ora Error
Ora Error
com/category/top-10/
When you login into Oracle Database and it throws following error message:
As a DBA, you must know that Shutdown, Shutdown Immediate or Startup commands that
are issued by database administrator with SYSDBA privileges.
If your database shutdown is in progress then wait for some time until the database
is shutdown and start your database with Startup command.
C:\>sqlplus system/system
ERROR:
Process ID: 0
To check the status of instance and database, login with SYSDBA privileges and
follow the steps.
C:\>sqlplus
Connected to:
STATUS DATABASE_STATUS
------------ -----------------
STARTED ACTIVE
ERROR at line 1:
Here we can see the instance is started but database is not mounted.
Database altered.
STATUS DATABASE_STATUS
------------ -----------------
MOUNTED ACTIVE
OPEN_MODE
----------
MOUNTED
Database is mounted successfully but when you try to connect, you still get the
same ORA-01033 error:
SQL> exit
C:\>sqlplus system/system
ERROR:
Process ID: 0
Connected to:
Database altered.
STATUS DATABASE_STATUS
------------ -----------------
OPEN ACTIVE
OPEN_MODE
----------
READ WRITE
Now the database is opened in read write mode and your database is up. You can
login with your user and can use your database.