Question: How do you duplex an
RMAN backup?
Answer: You can duplex an RMAN backup
Here we see that the current configuration is for disk
based backups using backup sets. Notice that currently the
data file and archive log backup copies are set to 1.
RMAN> show all;
. . .
CONFIGURE DATAFILE BACKUP COPIES FOR
DEVICE TYPE DISK TO 1; # default
CONFIGURE ARCHIVELOG BACKUP COPIES FOR
DEVICE TYPE DISK TO 1; # default
Note that the configure backup copies specifies how many
copies to of each backup piece to create during the RMAN
backup. Below we change the configure commands to
change the number of copies to 2.
RMAN> CONFIGURE
DATAFILE BACKUP COPIES FOR DEVICE TYPE
DISK TO 2;
new RMAN configuration parameters are
successfully stored
RMAN> CONFIGURE ARCHIVELOG BACKUP COPIES
FOR DEVICE TYPE DISK TO 2;
new RMAN configuration
parameters are successfully stored