Share |

ORA-01033: ORACLE initialization or shutdown in progress

A shutdown, shutdown immediate or startup command was issued by someone with SYSDBA privileges.

As a result, the database is being either shutdown or restarted.

You will have to wait until the database was shutdown or startup properly.

Following gives an example on the startup phase of the database. We are connecting to the database and receive the ORA-01033 error:
H:\>sqlplus system/xxx

SQL*Plus: Release 11.1.0.6.0 - Production

Copyright (c) 1982, 2007, Oracle.  All rights reserved.

ERROR:
ORA-01033: ORACLE initialization or shutdown in progress
Process ID: 0
Session ID: 0 Serial number: 0
Now, as a user with SYSDBA privileges, we are going to restart the database.
First check the status of the instance and database.
Enter user-name: / as sysdba

Connected to:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> select status, database_status from v$instance;

STATUS       DATABASE_STATUS
------------ -----------------
STARTED      ACTIVE

SQL> select open_mode from v$database;
select open_mode from v$database
                      *
ERROR at line 1:
ORA-01507: database not mounted
we can see that the instance was started ok, but the database was not mounted.
Let's check if we can mount the database, if this succeeds, then there is not problem with the data files (accessible, not corrupt, doesn't need recovery, ...)
SQL> alter database mount;

Database altered.

SQL> select status, database_status from v$instance;

STATUS       DATABASE_STATUS
------------ -----------------
MOUNTED      ACTIVE

SQL> select open_mode from v$database;

OPEN_MODE
----------
MOUNTED

Now we have a mounted database, but when you try to connect, you would still get the ORA-01033 error:
SQL> exit
Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Pr
oduction
With the Partitioning, OLAP, Data Mining and Real Application Testing options

H:\>sqlplus system/xxx

SQL*Plus: Release 11.1.0.6.0 - Production

Copyright (c) 1982, 2007, Oracle.  All rights reserved.

ERROR:
ORA-01033: ORACLE initialization or shutdown in progress
Process ID: 0
Session ID: 0 Serial number: 0
We need to make sure we open the database in read write mode before we can connect.
Again, login as a user with SYSDBA privileges and open the database:
Enter user-name: / as sysdba

Connected to:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options


SQL> alter database open;

Database altered.

SQL> select status, database_status from v$instance;

STATUS       DATABASE_STATUS
------------ -----------------
OPEN         ACTIVE

SQL> select open_mode from v$database;

OPEN_MODE
----------
READ WRITE
The database is open in read write mode, and our instance is telling we can use the database. We are now able to login.

Should you getting others errors when trying to mount or open the database, look up the error code in order to identify and rectify the problem.

Problem that can arise when trying to mount or open the database are:
  • ORA-00214: control file '%s' version %s inconsistent with file '%s' version %s
  • Inconsistent datafiles -> recovery needed
  • Missing datafiles, redolog files, controlfiles -> recover from backup
  • ...
 Was this information helpful?  Yes No
If it was not helpful, please take some time to explain why. This is not to ask questions, you can do so in the forum.

Welcome to our forum for Oracle error: ORA-01033 Add your own message



Your database is either stopping or starting, it is not running correctly.

Restart the database. If the Oracle windows service is unable to start, chck you %ORACLE_HOME%/dba/oradim.log file.
There might be an issue starting the service
I am using
Operating = WIN XP
Front End = VISUAL BASIC 6
Report = CRYSTAL REPORT 10
Back End = ORACLE 9i

The problem is
Runtime error -2147467259 (80004005)
ORA-01033-oracle initialization or shutdown in progress

pl, give me a good solution for this
 
afte giving sqlplus/nolog
& then trying to connect as sysdba
gives use error insufficient privilege
we cannot shoutdown
What operating system are you using?
Is this NT? If so, what is the value of SQLNET.AUTHENTICATION_SERVICES in your sqlnet.ora?

 
I am using winxp sp2
and my SQLNET.AUTHENTICATION_SERVICES is NTS
 
I had faced a problem "ORA-01033: ORACLE initialization or shutdown in progress" like this. i cant open SQL as default user "scott" and pass "tiger". i cant shutdown the oracel properway.
wat is it remedy?
how can i solve this without reloading oracle?
how it cause?

 
Hi,
I am able to connect to database thru Sqlplus using sysdba account, but cannot shutdown the database.I get an error as ora-01031 Insufficient Privileges when I run the command as

Sql>shutdown
ora-01031 Insufficient Privileges

I would appreciate if you can provide some solution to my issue.

Thanks,
Shweta
 
if am facing the problem from last 2 daya.please give the solutuin.i do not have sys/system passowrd.i tried all available passwords.
 
am using
Operating = WIN XP
Front End = VISUAL BASIC 6
Report = CRYSTAL REPORT 10
Back End = ORACLE 9i

The problem is
Runtime error -2147467259 (80004005)
ORA-01033-oracle initialization or shutdown in progress

pl, give me a good solution for this
Your database is not opening correctly, check for errors and retry to start your database.
 
Followed all your steps but when doing ," alter database open" its giving following errors

SQL> alter database open;
alter database open
*
ERROR at line 1:
ORA-01122: database file 1 failed verification check
ORA-01110: data file 1: 'D:\ORACLE\ORADATA\ORCL1\SYSTEM01.DBF'
ORA-01207: file is more recent than controlfile - old controlfile
 
when log on dispaly to this error
ORA-01033: ORACLE initialization or
shutdown in progress.
i working server windosserver 2000
You need to open the database using the "alter database open" command.

Your instance is in mounted state, you still need to open the database before you can use it.
It can be that the database can't open because of missing or corrupt redolog or datafiles.
 

i did that above process but i didn't solve of my problem

when i open sqlplus system /*** then

it is not going in readopen mode

this is in mount mode

how can i change

What error do you get when opening the database?

alter database open;

 
 

Dear friend . . I am working oracle 10g, while trying to start sql*plus window, I got error ORA-01033, got logged in using sys/pass as sysdba and applied the following commands.

SQL> select open_mode from v$database;

OPEN_MODE
----------
MOUNTED

finally got the problem, PLEASE HELP ME.

SQL> alter database open;
alter database open
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [kcratr1_lostwrt], [], [], [], [],
[], [], []


SQL>

This is a bug, either patch your database or try using following work around


Change the set _two_pass parameter to FALSE in your init.ora and restart the database instance
 

SQL> alter database open;
alter database open
*
ERROR at
line 1:
ORA-00600: internal error code, arguments: [kcratr1_lostwrt],
[], [], [], [],
[], [], []


SQL>

I am also facing same problem. Can you pls explain How to resolve this bug?

The _lostwrt probably means a lost write, so you need to check if your disks are still oke, and you have nor errors on the disk controller

 

i m using windows xp

and database is oracle 10g

today when i  start my  forms. i got a message ora-01033 oracle initiali.....

what can i do

Try to restart the database. If the database does not come up, check the alert.log file or oradim.log file for errors

Add your message

 Please provide your personal info 



 Please ask your message as briefly and clear as possible 

 Spam Protection 
Validation Code: nec7mmyfzh3v7zuog


Ask Your Question

If you need more information about this particular error message, you can leave a forum message.

We are replying to this message whenever we have some spare time, so please do not consider this as a private 'solve my critical issue asap' service.

Should you need professional Oracle Assistance to make your project a success, please have a look at our consultancy services.


Spam Protection

In order to prevent automatic generation of messages, we are asking for a validation code. This code is unique and is generated every time a new message is asked.

If you do not enter the validation correctly, your message will not be recorded.


Forum Rules

Please be polite, do not USE ALL UPPERCASE, no insults, violance or any other threats.