Recover Full Database from Cold Backup

Outline the steps for recovering the full database from cold backup?

Questions by shanthiavari

Showing Answers 1 - 18 of 18 Answers

satyam_2007

  • Dec 14th, 2009
 

Using RMAN Open the database in mount mode;

Rman> restore database Recovry not required, as we are restoring from cold backup. However we can run Rman> recover database Open database now.

  Was this answer useful?  Yes

Navas2u

  • Jan 8th, 2011
 

We don't need to recover a database if it were a consistent backup (cold).

But You should make sure to shutdown the DB with options available other than
Abort.

  Was this answer useful?  Yes

Nishant Chawre

  • May 5th, 2012
 

Start the database in MOUNT mode
RMAN>restore database;

then if the online redo logs are intact then
RMAN>recover database;

if the online redo logs are not intact/not available then
RMAN>recover database noredo;

Code
  1. --if the online redo logs are intact then

  2. RMAN>restore DATABASE;

  3. RMAN>recover DATABASE;

  4.  

  5.  

  6.  

  7. --if the online redo logs are not intact or not available then

  8. RMAN>restore DATABASE;

  9. RMAN>recover DATABASE noredo;

  Was this answer useful?  Yes

Ravindra Dorlikar

  • Dec 12th, 2014
 

Copy all datafile from latest cold backup as per datafile location in curret control file and make sure all the archive log file are present as the same location mentioned in pfile from the date of cold backup. once make sure all the file are at placed and all archive log files are at placed.

Start the database in mount state.

Connect by RMAN as:

rman target / nocatalog

Make the recovery until time:

run{
allocate channel ch1 device type disk;
set until time "to_date(2012-07-24:22:00:00,YYYY-MM-DD:hh:mm:ss)";
recover database;
}

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions