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 to restore databases using built-in Oracle RMAN functionality. When you launch the restore, RMAN restores the selected database from the backup stored on the Veeam backup repository.

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

To restore the Oracle database, connect to the database with RMAN and run the backup 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, etc. For details, see Restore to Another Server Using RMAN.