RMAN RESTORE

Oracle RMAN (Recovery Manager) provides powerful functionality for restoring databases, tablespaces, datafiles, or even individual blocks from backups. RMAN restores data from backup sets or image copies and recovers it using the necessary archived redo logs to bring the database to a consistent state.

Here’s a guide on performing RMAN restore operations:

1. Types of RMAN Restores


2. General Steps for RMAN Restore

a. Restoring a Database

Start RMAN and connect to the target database:
bash
Copy code
$ rman target /

sql
Copy code
RMAN> STARTUP MOUNT;

sql
Copy code
RMAN> RESTORE DATABASE;

sql
Copy code
RMAN> RECOVER DATABASE;

sql
Copy code
RMAN> ALTER DATABASE OPEN;


Restoring a Specific Tablespace

Put the affected tablespace offline:
sql
Copy code
SQL> ALTER TABLESPACE users OFFLINE;


Restore the tablespace:
sql
Copy code
RMAN> RESTORE TABLESPACE users;


Recover the tablespace:
sql
Copy code
RMAN> RECOVER TABLESPACE users;


Bring the tablespace online:
sql
Copy code
SQL> ALTER TABLESPACE users ONLINE;


Restoring Specific Datafiles

sql
Copy code
SQL> SELECT file#, name FROM v$datafile;


Take the datafile(s) offline:
sql
Copy code
SQL> ALTER DATABASE DATAFILE 3 OFFLINE;


Restore the datafile(s):
sql
Copy code
RMAN> RESTORE DATAFILE 3;


Recover the datafile(s):
sql
Copy code
RMAN> RECOVER DATAFILE 3;


Bring the datafile(s) online:
sql
Copy code
SQL> ALTER DATABASE DATAFILE 3 ONLINE;


Restoring the Control File

If your control file is lost or corrupted, you can restore it using RMAN:

Start RMAN and connect to the target database:
bash
Copy code
$ rman target /

sql
Copy code
RMAN> STARTUP NOMOUNT;


Restore the control file:
sql
Copy code
RMAN> RESTORE CONTROLFILE FROM AUTOBACKUP;


Mount the database:
sql
Copy code
RMAN> ALTER DATABASE MOUNT;


Recover the database (if needed):
sql
Copy code
RMAN> RECOVER DATABASE;


Open the database:
sql
Copy code
RMAN> ALTER DATABASE OPEN RESETLOGS;


Restoring the SPFILE (Server Parameter File)

If the SPFILE is lost, RMAN can restore it from an autobackup or another backup.

Start RMAN and connect to the target database:
bash
Copy code
$ rman target /


Start the instance in nomount mode:
sql
Copy code
RMAN> STARTUP FORCE NOMOUNT;


Restore the SPFILE:
sql
Copy code
RMAN> RESTORE SPFILE FROM AUTOBACKUP;


Restart the database with the restored SPFILE:
sql
Copy code
RMAN> SHUTDOWN IMMEDIATE;

RMAN> STARTUP;

Block Media Recovery

If only specific blocks are corrupted, you can use RMAN to recover those blocks instead of restoring an entire datafile.

Recover the corrupted blocks:
sql
Copy code
RMAN> BLOCKRECOVER DATAFILE 4 BLOCK 12;


3. RMAN Restore Options

a. SET UNTIL TIME / SCN / SEQUENCE

Example for point-in-time restore:
sql
Copy code
RMAN> SET UNTIL TIME 'SYSDATE-1';  -- Restore to one day ago

RMAN> RESTORE DATABASE;

RMAN> RECOVER DATABASE;

RMAN> ALTER DATABASE OPEN RESETLOGS;


b. RESTORE PREVIEW

Command:
sql
Copy code
RMAN> RESTORE DATABASE PREVIEW;


c. RESTORE VALIDATE

Command:
sql
Copy code
RMAN> RESTORE DATABASE VALIDATE;


d. SKIP INACCESSIBLE

Command:
sql
Copy code
RMAN> RESTORE DATABASE SKIP INACCESSIBLE;


e. NOREDO

Command:
sql
Copy code
RMAN> RESTORE DATABASE NOREDO;


4. RMAN Restore Best Practices


Restore Database from a full RMAN backup

Restoring a database to a new server from a full RMAN backup is a common requirement when migrating databases to new hardware or recovering from a disaster. This process involves copying the RMAN backups from the original server, restoring the control file, datafiles, and performing recovery on the new server. Below are the detailed steps to achieve this:

1. Prerequisites

Before starting the RMAN restore to a new server, ensure the following:

2. Prepare the New Server

3. Transfer Backup Files

Copy all RMAN backup files from the source server to the new server. These backup files should include:

Make sure the directory structure on the new server is consistent or update the paths in the restore process if needed.

4. Restore and Recover Database on New Server

Once the backup files are copied to the new server, follow these steps to restore and recover the database:

a. Start RMAN and Connect to the Target Database

On the new server, start RMAN.
bash
Copy code
$ rman target /


sql
Copy code
RMAN> SET DBID <dbid_value>;


b. Restore the Control File

sql
Copy code
RMAN> STARTUP NOMOUNT;


sql
Copy code
RMAN> RESTORE CONTROLFILE FROM AUTOBACKUP;


sql
Copy code
RMAN> RESTORE CONTROLFILE FROM '/path/to/controlfile/backup';


Mount the database:
sql
Copy code
RMAN> ALTER DATABASE MOUNT;


c. Catalog the Backup Files

If the backup files are in a different location on the new server, catalog them to let RMAN know where they are:

sql

Copy code

RMAN> CATALOG START WITH '/new/path/to/backup/files/';


d. Restore the SPFILE (if needed)

If the SPFILE was backed up and you need to restore it:

Shutdown the instance:
sql
Copy code
RMAN> SHUTDOWN IMMEDIATE;


Restore the SPFILE:
sql
Copy code
RMAN> RESTORE SPFILE FROM AUTOBACKUP;


Restart the instance with the restored SPFILE:
sql
Copy code
RMAN> STARTUP FORCE NOMOUNT;


e. Restore the Database

Restore the datafiles from the backup:
sql
Copy code
RMAN> RESTORE DATABASE;


f. Recover the Database

After restoring the datafiles, perform media recovery to apply all necessary archived redo logs:
sql
Copy code
RMAN> RECOVER DATABASE;


g. Open the Database

Once recovery is complete, you can open the database. Since the database is restored to a new server, you must open it with the RESETLOGS option:
sql
Copy code
RMAN> ALTER DATABASE OPEN RESETLOGS;


5. Modify File Locations (if needed)

If the file paths on the new server differ from the original server (for example, if the file system layout is different), you can use RMAN’s SET NEWNAME command to modify the locations of datafiles, online redo logs, and control files during the restore process.

Example of Using SET NEWNAME

Before restoring the database, use SET NEWNAME to redirect the datafiles:
sql
Copy code
RUN {

  SET NEWNAME FOR DATAFILE 1 TO '/newpath/system01.dbf';

  SET NEWNAME FOR DATAFILE 2 TO '/newpath/sysaux01.dbf';

  SET NEWNAME FOR DATAFILE 3 TO '/newpath/undotbs01.dbf';

  SET NEWNAME FOR DATAFILE 4 TO '/newpath/users01.dbf';

  RESTORE DATABASE;

  SWITCH DATAFILE ALL;

  RECOVER DATABASE;

}


6. Update Database Configuration (Optional)

After restoring the database to the new server, you may need to perform additional tasks, such as:

7. Post-Restoration Verification

Verify that the database is functioning correctly:
sql
Copy code
SQL> SELECT status FROM v$instance;



Example: RMAN Restore on New Server

sql

Copy code

-- Step 1: Set the DBID

RMAN> SET DBID 123456789;


-- Step 2: Startup the database in NOMOUNT mode

RMAN> STARTUP NOMOUNT;


-- Step 3: Restore the control file from autobackup

RMAN> RESTORE CONTROLFILE FROM AUTOBACKUP;


-- Step 4: Mount the database

RMAN> ALTER DATABASE MOUNT;


-- Step 5: Catalog backup pieces (if needed)

RMAN> CATALOG START WITH '/new/server/backup/';


-- Step 6: Restore the SPFILE (if required)

RMAN> RESTORE SPFILE FROM AUTOBACKUP;


-- Step 7: Restore the database

RMAN> RESTORE DATABASE;


-- Step 8: Recover the database

RMAN> RECOVER DATABASE;


-- Step 9: Open the database with RESETLOGS

RMAN> ALTER DATABASE OPEN RESETLOGS;



Key Considerations

This method outlines the process for restoring a full RMAN backup to a new server, allowing for a smooth database migration or disaster recovery process.


Importance of DBID in RMAN

The DBID is a vital identifier in RMAN restore and recovery operations, especially when restoring databases without a control file or when restoring to a new server. RMAN uses the DBID to locate the correct backups and ensure that the appropriate files are used during recovery. By setting the DBID in RMAN, you can easily restore the control file, SPFILE, and datafiles from autobackups, ensuring a smooth recovery process.