You configured the default backup device type as disk for RMAN backups. In your database,
because of business requirements, you have to take a simultaneous duplicate backup of the data
files when the RMAN BACKUP command is used.
What must you set using the RMAN CONFIGURE command to achieve this?
A.
MAXSETSIZE TO 2;
B.
DEVICE TYPE DISK PARALLELISM 2;
C.
RETENTION POLICY TO REDUNDANCY 2;
D.
DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 2;
Explanation:
http://docs.oracle.com/cd/B14117_01/server.101/b10734/rcmconc1.htm (Topic backup
redundancy, first paragraph)
I think the correct answer is D.
Example from documentation:
CONFIGURE DEVICE TYPE disk PARALLELISM 2; # two channels used in parallel
so answer is rather B.
D means 2 copies of backup but it does not mean that it is done simultaneously.
Configuring Specific Channel Parameters
http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmconfa.htm#i1007068