Connecting Tech Pros Worldwide Forums | Help | Site Map

Ora 1033 Error

Newbie
 
Join Date: Oct 2007
Posts: 1
#1: Oct 5 '07
Sir

Backend Oracle 9i
Front end VB.Net
O/s Windows 2003 Server

Server Crashed due to power failure

then the following error
displays when connect to oracle database

ORA 1033-Oracle intialization or shutdown in progress

I have search a lot of blogs But I have not yet get the suitable answer

Karikalacholan
[email removed - against site rules]

debasisdas's Avatar
Moderator
 
Join Date: Dec 2006
Location: Bangalore ,India
Posts: 7,511
#2: Oct 6 '07

re: Ora 1033 Error


The problem is because the instance of the databse has been shut down. At this time u can't log in,

Open SQL*Plus and connect sys as sysdba and start the database again to work with it.
or
start the services of Oracle Listener, Oracle Agent and the Oracleservice containint the SID of the database.
Newbie
 
Join Date: May 2009
Posts: 1
#3: May 7 '09

re: Ora 1033 Error


ora 1033

from your c:\ prompt type

sqlplus /nolog

from sqlplus prompt type

>connect /as sysdba

>shutdown

>startup mount

>alter database recover database until cancel;

if the above command fails try
>recover database using backup controlfile until cancel;"

on success type
>ALTER DATABASE OPEN RESETLOGS;

stop and restart oracle service

from

Andrew and Bixon the Ora Gurus
Reply