
RMAN备份遇到报错:
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of backup command at 12/15/2021 09:56:17
RMAN-06018: duplicate operand specified in backup specification: DFORMAT
备份命令:
run
{
allocate channel c1 device type disk;
allocate channel c2 device type disk;
allocate channel c3 device type disk;
allocate channel c4 device type disk;
backup as compressed backupset database format="/backup/rman/rmabak_%T_%s_%p_%c.bak" filesperset 4 format="/backup/rman/arch_%T_%s_%p_%c.bak";
CONFIGURE RETENTION POLICY TO REDUNDANCY 2;
configure controlfile autobackup format for device type disk to '/backup/rman/controlfile_%F';
delete noprompt obsolete;
release channel c1;
release channel c2;
release channel c3;
release channel c4;
}