This is an archive version of the document. To get the most up-to-date information, see the current version.

Restore to Original Server

Veeam Plug-in for Oracle RMAN allows you to restore databases using built-in Oracle RMAN functionality. When you launch a restore, RMAN restores the necessary database from the backup stored in the Veeam backup repository.

If you want to change the repository or channel settings, you must modify the Veeam Plug-in settings. For details, see Configuring Veeam Plug-in for Oracle RMAN.

To restore the Oracle database, you must connect to the database with RMAN and run the restore command. You may need to run additional commands depending on your database infrastructure. Consider configuring required RMAN-specific parameters that may affect the backup process. For details on all restore capabilities of Oracle RMAN, see the Performing Complete Database Recovery section of the Oracle's Database Backup and Recovery User's Guide.

rman TARGET /

RUN {

SHUTDOWN IMMEDIATE;
STARTUP MOUNT;
RESTORE DATABASE;
RECOVER DATABASE;

}

EXIT;

 

Note

If you use the SEND command on the target server to point to the source server, you can run operations like DUPLICATE. For details, see Restore to Another Server Using RMAN.