I have approximately 80 Oracle servers. We use the Veeam plugin for Oracle RMAN to back up the databases in managed mode. The 80 databases are distributed across 5 application backup policies. Now for my problem: Before maintenance work on an Oracle server, our DBAs like to perform a backup. However, with Veeam, I can only initiate a backup of the entire application backup policy. Is there a way to initiate an RMAN backup of a single Oracle server?
This is possible in standalone mode via the RMAN CLI:
Code: Select all
RUN {
BACKUP DATABASE PLUS ARCHIVELOG;
}
EXIT;
Code: Select all
RMAN-00571: =============================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: =============================================================
RMAN-03002: failure of backup plus archivelog command at 03/25/2026 10:47:10
ORA-19506: failed to create sequential file, name="af28c18b-aa0e-4809-9a93-fbe5dbe63dd0/RMAN_2610434210_ISP_20260325_ug4jsj5d_118736_1_1.vab", parms=""
ORA-27028: skgfqcre: sbtbackup returned error
ORA-19511: non RMAN, but media manager or vendor specific failure, error text:
Write operations are restricted
--tr:Unable to perform SbtBackup
--tr:Unable to execute command sbtBackup
--tr:Unable to dispatch plugin
Thanks and best regards,
Andreas