Starting Backup Job on Veeam Plug-in Side

In the Veeam Plug-in management scenario, you can still manually start an application backup job from the computer with Veeam Plug-in installed. For example, this may be useful if you want to create an ad-hoc backup just before the database maintenance.

Keep in mind the following:

  • You can back up only those databases that are added to the application backup policy on the Veeam Backup & Replication side. If the database is not added to any application backup policy, you cannot back up this database from the computer with Veeam Plug-in.
  • You cannot start an application backup job from the computer with Veeam Plug-in installed, if the application backup policy on the Veeam Backup & Replication side is in the disabled state. To learn how to enable a disabled backup policy, see Enabling and Disabling Backup Policy.
  • When you start an application backup job from the computer with Veeam Plug-in installed, Veeam Backup & Replication will not start the application backup policy. The policy will stay in the idle state.

The way you configure and start the backup job depends on the Veeam Plug-in you work with:

Veeam Plug-in for SAP HANA

If you create an application backup policy for Veeam Plug-in for SAP HANA, Veeam Backup & Replication saves the backup job parameters in the SAP HANA global.ini file on the computer with Veeam Plug-in. As a result, you can use SQL commands or SAP HANA tools to back up SAP HANA databases. To learn more, see Database Protection.

Veeam Plug-in for SAP on Oracle

If you create an application backup policy for Veeam Plug-in for SAP on Oracle, Veeam Backup & Replication saves the backup job configuration on the computer with Veeam Plug-in. Depending on the version of Oracle Database, Veeam Plug-in stores the configuration file in one of the following directories:

The BRBACKUP tool can use this configuration file as an initialization profile. As a result, you can use this file to start the backup operation from the Veeam Plug-in side. To learn more about configuration file, see Configuring Plug-in for SAP on Oracle.

Veeam Plug-in for Oracle RMAN

If you create an application backup policy for Veeam Plug-in for Oracle RMAN, Veeam Backup & Replication does not save the backup job configuration on the computer with Veeam Plug-in. As a result, you can configure and start the backup job as a command in the Oracle RMAN console.

Consider that the command differs depending on the OS running on the computer with Veeam Plug-in for Oracle RMAN installed:

rman TARGET /
RUN { 
ALLOCATE CHANNEL VeeamAgentChannel1
DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=C:\PROGRA~1\Veeam\VEEAMP~1\ORACLE~2.DLL' FORMAT 'RMAN_%I_%d_%T_%U.vab';
BACKUP INCREMENTAL LEVEL 0 DATABASE;
}
EXIT;

rman TARGET /
RUN { 
ALLOCATE CHANNEL VeeamAgentChannel1
DEVICE TYPE SBT_TAPE PARMS 'SBT_LIBRARY=/opt/veeam/VeeamPluginforOracleRMAN/libOracleRMANPlugin.so' FORMAT 'RMAN_%I_%d_%T_%U.vab';
BACKUP INCREMENTAL LEVEL 0 DATABASE;
}
EXIT;