Home » RDBMS Server » Server Administration » ORA-01033: ORACLE initialization or shutdown in progress (Oracle 10g)
ORA-01033: ORACLE initialization or shutdown in progress [message #472339] Fri, 20 August 2010 01:07 Go to next message
monasingh
Messages: 229
Registered: May 2006
Location: Mumbai
Senior Member

Hi,
My database was working fine and now I am not able to login and getting the error:-
"ORA-01033: ORACLE initialization or shutdown in progress"

I have done the below steps:
SQL> shutdown immediate
ORA-01109: database not open


Database dismounted.
ORACLE instance shut down.
SQL> STARTUP
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE instance started.

Total System Global Area  285212672 bytes
Fixed Size                  1248552 bytes
Variable Size             100664024 bytes
Database Buffers          176160768 bytes
Redo Buffers                7139328 bytes
Database mounted.
ORA-16038: log 2 sequence# 324 cannot be archived
ORA-19809: limit exceeded for recovery files
ORA-00312: online log 2 thread 1:
'C:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\REDO02.LOG'


Please adice as what is going wrong and how can I fix this.


Regards,
Mona
Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472342 is a reply to message #472339] Fri, 20 August 2010 01:22 Go to previous messageGo to next message
Michel Cadot
Messages: 68653
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
Quote:
ORA-32004: obsolete and/or deprecated parameter(s) specified

Have a look at alert.log file, it tells you which parameter are obsolete.

ORA-19809: limit exceeded for recovery files
*Cause: The limit for recovery files specified by the
        DB_RECOVERY_FILE_DEST_SIZE was exceeded.
*Action:The error is accompanied by 19804. See message 19804 for further
        details.

Backup the FRA and clean it or enlarge it.
Till you do it the database cannot work.

Regards
Michel
Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472345 is a reply to message #472342] Fri, 20 August 2010 01:45 Go to previous messageGo to next message
monasingh
Messages: 229
Registered: May 2006
Location: Mumbai
Senior Member

Kindly guide me for the suggestions given by you as how to carry on the steps for :-
Backup the FRA and clean it or enlarge it.


I am into pl/sql development and this has happened to the Oracle server installed on my computer only.

Please guide.

Thanks for looking into this.
Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472348 is a reply to message #472345] Fri, 20 August 2010 01:56 Go to previous messageGo to next message
Michel Cadot
Messages: 68653
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
What is your current database backup strategy?
What is your archive log mode?
What is the purpose of this database?

Regards
Michel

[Updated on: Fri, 20 August 2010 01:56]

Report message to a moderator

Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472351 is a reply to message #472348] Fri, 20 August 2010 02:12 Go to previous messageGo to next message
monasingh
Messages: 229
Registered: May 2006
Location: Mumbai
Senior Member

This is only a test database. I have never taken backup of it as this is just for testing.

I have installed Oracle server on my computer to do some testing and learn only.

[Updated on: Fri, 20 August 2010 02:13]

Report message to a moderator

Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472354 is a reply to message #472351] Fri, 20 August 2010 02:17 Go to previous messageGo to next message
Michel Cadot
Messages: 68653
Registered: March 2007
Location: Nanterre, France, http://...
Senior Member
Account Moderator
So, put your database in NOARCHIVELOG mode and delete all archived logs, this will free space in your FRA.

Regards
Michel
Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472366 is a reply to message #472354] Fri, 20 August 2010 03:47 Go to previous messageGo to next message
monasingh
Messages: 229
Registered: May 2006
Location: Mumbai
Senior Member

I deleted the archivelog after setting to noarchivelog. But I am still getting the same error:-

SQL> select log_mode from v$database;

LOG_MODE
------------
ARCHIVELOG

SQL> show parameter log_archive_start

NAME                                 TYPE        VALUE
------------------------------------ ----------- ---------------
log_archive_start                    boolean     TRUE
SQL> alter database noarchivelog;

Database altered.

SQL> shutdown
ORA-01109: database not open


Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORA-32004: obsolete and/or deprecated parameter(s) specified
ORACLE instance started.

Total System Global Area  285212672 bytes
Fixed Size                  1248552 bytes
Variable Size             100664024 bytes
Database Buffers          176160768 bytes
Redo Buffers                7139328 bytes
Database mounted.
SQL> select log_mode from v$database;

LOG_MODE
------------
NOARCHIVELOG

SQL> conn /  as sysdba
Connected.
SQL> conn scott/tiger
ERROR:
ORA-01033: ORACLE initialization or shutdown in progress


Warning: You are no longer connected to ORACLE.
SQL>


Please advice.
Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472377 is a reply to message #472342] Fri, 20 August 2010 04:38 Go to previous messageGo to next message
cookiemonster
Messages: 13923
Registered: September 2008
Location: Rainy Manchester
Senior Member
Michel Cadot wrote on Fri, 20 August 2010 07:22
Quote:
ORA-32004: obsolete and/or deprecated parameter(s) specified

Have a look at alert.log file, it tells you which parameter are obsolete.


Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472380 is a reply to message #472377] Fri, 20 August 2010 04:44 Go to previous messageGo to next message
John Watson
Messages: 8932
Registered: January 2010
Location: Global Village
Senior Member
don't forget to open the database.
Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472389 is a reply to message #472366] Fri, 20 August 2010 05:42 Go to previous messageGo to next message
Yasir Hashmi
Messages: 304
Registered: April 2006
Senior Member
Issue:
SQL>alter database open;

Post any error you get
Re: ORA-01033: ORACLE initialization or shutdown in progress [message #472395 is a reply to message #472389] Fri, 20 August 2010 06:37 Go to previous message
monasingh
Messages: 229
Registered: May 2006
Location: Mumbai
Senior Member

Thanks you so much... I am able to connect to database now.
You guys are a great help on this great forum Smile

C:\>sqlplus

SQL*Plus: Release 10.2.0.1.0 - Production on Fri Aug 20 17:01:48 2010

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

Enter user-name: conn / as sysdba
Enter password:

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options

SQL> alter database open;

Database altered.

SQL>
SQL> conn scott/tiger
Connected.
SQL>


Mona
Previous Topic: System Privileges
Next Topic: remote_login_passwordfile
Goto Forum:
  


Current Time: Mon May 20 02:43:21 CDT 2024