Restore to Another Server

If you want to restore Oracle databases from a Veeam Plug-in backup to another server, see this Oracle article and consider the specifics described in this section.

To restore an Oracle database to another server, use the following commands:

  1. ALLOCATE CHANNEL. Use this command to manually allocate a channel or channels between RMAN and the database instance. Specify the following parameters:
  1. Assign an ID for the channel. For example: ch1.
  2. Specify the SBT_TAPE option for the DEVICE TYPE or TYPE parameter.
  3. Specify PARMS to define other parameters for the sbt_tape channel.
  4. Specify which media library must be used for this sbt_tape channel. For Linux or Unix, set the path to the libOracleRMANPlugin.so file as the SBT_LIBRARY. For Windows, set the path to %PROGRAMFILES%\Veeam\VeeamPluginforOracleRMAN\OracleRMANPlugin.dll.
  1. SEND. Use this command with the srcBackup=BackupID parameter to specify the ID of the backup from which you want to restore a database. For example: "srcBackup=6109d377-93b5-4741-a796-03471d2795cd".

To obtain a backup ID, do the following:

  1. Specify an authentication method to access the backup created for the original server. For details, see Specifying Authentication Settings.
  2. Select the backup from which you want to restore a database. For details, see Selecting Backup.

Important

Consider the following:

  • Veeam Plug-in for Oracle RMAN must be installed and configured on the target server.
  • The ALLOCATE CHANNEL and SEND commands must be issued only within a RUN block for a specific restore operation.

The following example shows a script for restoring the control file and restoring the Oracle database to another server using the SEND command:

rman TARGET /

RUN {

ALLOCATE CHANNEL a1 TYPE sbt_tape PARMS "SBT_LIBRARY=/opt/veeam/VeeamPluginforOracleRMAN/libOracleRMANPlugin.so" SEND "srcBackup=6109d377-93b5-4741-a796-03471d2795cd";

SET CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE 'SBT_TAPE' TO '%F_RMAN_AUTOBACKUP.vab';

RESTORE controlfile FROM 'c-4097408439-20200410-00_RMAN_AUTOBACKUP.vab';

}

EXIT;

Consider the following:

  • If you do not use the SEND command, Veeam Plug-in will restore data from a backup created for the server on which Veeam Plug-in is currently running instead of restoring data from a backup created on another server.
  • For restore to another server, you can use either backups or backup copies of Oracle databases.
  • If you perform restore from a backup that was imported to Veeam Backup & Replication, Veeam Plug-in will automatically create the backup job in Veeam Backup & Replication.
  • During the restore process, backup operations are not disabled on the Oracle server.

Specifying Authentication Settings

To restore databases to another server, you must specify an authentication method to access the backup created for the original server. Veeam Plug-in for Oracle RMAN supports the following authentication methods to access backups:

This option is intended for backups created using Oracle RMAN commands on the Oracle server.

This option is intended for backups created using an application backup policy configured in Veeam Backup & Replication. To use this option, a backup administrator must create a recovery token for the backup in Veeam Backup & Replication.

Specifying Credentials

To restore a database to another server, you can specify credentials of a user account under which the backup was created. To do this, do the following:

  1. Run the following command:

OracleRMANConfigTool --set-auth-data-for-restore

  1. Veeam Plug-in will prompt you to select an authentication method to access the backup.

If you want to access the backup using account credentials, the account must meet the following requirements:

To access the backup using account credentials, type 1:

Select authentication type or disable the functionality:
0. To disable the functionality
1. Credentials
2. Recovery token
Enter authentication type number:
1

 

  1. Veeam Plug-in will prompt you to provide credentials of the user account that under which the backup was created. Enter a user name and password of the account:

Enter username:
Enter password for <username>:

 

Specifying Recovery Token

You can restore a database to another server using a recovery token generated in Veeam Backup & Replication and provided to you by a backup administrator. To do this, do the following:

  1. Run the following command:

OracleRMANConfigTool --set-auth-data-for-restore

  1. Veeam Plug-in will prompt you to select an authentication method to access the backup. To access the backup using a recovery token, type 2:

Select authentication type or disable the functionality:
0. To disable the functionality
1. Credentials
2. Recovery token
Enter authentication type number:
2

  1. Veeam Plug-in will display the fingerprint of the Veeam Backup & Replication server and prompt you to provide a recovery token:

Veeam Backup & Replication server fingerprint: CA4F820F164C02A9AAC75562FC35330A93CDAA3C.
Continue? (y/n) : y
Enter recovery token:
The specified authentication data will be used automatically to access backups over the SEND command

Selecting Backup

After you specify authentication settings to access the backup from which you want to restore a database on another server, you can select the backup. To do this, do the following:

  1. Run the following command:

OracleRMANConfigTool --get-backup-for-restore

  1. Veeam Plug-in will display backups available for restore. The list of backups depends on the authentication settings that you specified:

Select the backup to obtain the backup ID:

Select backup to be used:
1. Backup1 Oracle backup (Default Backup Repository)
2. Backup2 Oracle backup (Default Backup Repository)
3. Backup3 Oracle backup (Default Backup Repository)
Enter backup number: 3
To perform restore operations, use ID of the selected backup from the example below as srcBackup parameter value in SEND command:
ALLOCATE CHANNEL VeeamAgentChannel1 DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/opt/veeam/VeeamPluginforOracleRMAN/libOracleRMANPlugin.so';
SEND 'srcBackup=6109d377-93b5-4741-a796-03471d2795cd';