160.Which two statements are true about the duplexing of the backups taken by RMAN? (Choose two.)
A. It's only supported for the backups performed on the tape
B. It is not supported for backup operations that produce image copies
C. Duplex backups need a parallelism for the device to be equal to number of copies
D. Duplex backups can be performed to either disk or tape, but cannot be performed on tape and disksimultaneously
Answer: BD
答案解析:
Configuring Backup Duplexing
You
can use theCONFIGURE ... BACKUP COPIES command to specify how many copies of each backup
piece should be created on the specified device type for the specified type of file. This type of backup is known as aduplexed
backup set. TheCONFIGURE settings for duplexing only affect backups of data files, control files, and archived logs into backup sets,and do not affect image copies.
RMAN can duplex backups to either disk or tape, but cannot duplex backups to tape and disk simultaneously.When backing up to tape, ensure that the number of copies does not exceed the
number of available tape devices. The following examples show possible duplexing configurations:
# Makes 2 disk copies of each data file and control file backup set
# (autobackups excluded)
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 2;
# Makes 3 copies of every archived redo log backup to tape
CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE sbt TO 3;
To return aBACKUP COPIES configuration to its default value, run the sameCONFIGURE command with theCLEAR option, as in the following example:
CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE sbt CLEAR;
By default,CONFIGURE ... BACKUP COPIES is set to1 for each device type.
Note:
If you do not want to create a persistent copies configuration, then you can specify copies with the BACKUP COPIES and the SET
BACKUP COPIES commands.
|