Previous Topic: Restore the Entire Database (Tablespaces and Control Files)Next Topic: How to Restore an Active Directory


Recover the Oracle Database Using Bare Metal Recovery

Bare metal recovery lets you recover and rebuild the entire computer system during a disaster. You can restore the original computer or you can restore another computer.

Follow these steps:

  1. Restore the computer using one of the following methods:
  2. Log in to the restored computer.
  3. Open the command prompt and connect to the Oracle instance (for example ORCL) as sysdba.
  4. Verify the status of the Oracle instance.
    SQL> SELECT STATUS FROM V$INSTANCE;
    
  5. Perform one of the following steps depending on the status of the Oracle instance:
  6. Recovery by executing the RECOVER command if database need media recovery
    SQL> RECOVER DATABASE;
    
  7. Open the Oracle instance after the media recovery is complete.
    SQL> ALTER DATABASE OPEN;
    

The Oracle database is recovered using the bare metal recovery.