You are on page 1of 1

SCENARIO 3:- ALL CONTROLFILES CORRUPTED OR LOST

SOLUTION

Connect to database using RMAN as ORACLE user


$ rman target /

Shutdown the database


RMAN> shutdown immediate

Startup the database in nomount stage using RMAN


RMAN> startup nomount

Restore the controlfile backup using RMAN


RMAN> restore controlfile from autobackup;
Or
RMAN> restore controlfile from �<path/file_name>�;

Mount the database


RMAN> alter database mount;
RMAN> exit

Connect as SYS user using SQLPLUS


SQL> recover database;
SQL> alter database open resetlogs;

Error :
SQL> recover database;
ORA-00283: recovery session canceled due to errors
ORA-01610: recovery using the BACKUP CONTROLFILE option must be done

ACTION : recover database until cancel using backup controlfile;

You might also like