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

Restore with Oracle RMAN

In this article

    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 reconfigure 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;

    }

    Restore with Oracle RMAN Note:

    If the customServerName parameter is configured on the target server to point to the source server, you can run operations like DUPLICATE. For details on configuring the customServerName parameter, see Restore to Another Server.