88.In your database, the flash recovery area (FRA) is configured as the default for RMAN backups. You
executed the following commands to configure the settings in RMAN:
Which statement is true about the outcome?
A. Only one channel is allocated and the backup is created in the flash recovery area
B. Only one channel is allocated and the backup is created in the destination specified for channel
C. Two channels are allocated and backup sets are created in the destinations specified for channels 1
and 2
D. Three channels are allocated and backup sets are created in the destinations specified for channels 1,
2, and FRA
Answer: A
答案解析:
官方参考:http://docs.oracle.com/cd/E11882_01/backup.112/e10643/rcmsynta004.htm#RCMRF102
手动分配通道会覆盖CONFIGURE配置的自动分配通道,并且rman的备份信息会默认放在fra中。故选A.
ALLOCATE CHANNEL
ALLOCATE CHANNEL
manually allocates a channel (which is a connection between RMAN and a database instance). The ALLOCATE CHANNEL
command must be issued within a RUN
block. It allocates a channel only in the block where the command is issued.
Manually allocated channels are distinct from automatically allocated channels specified with CONFIGURE
. Automatic channels apply to any RMAN job in which you do not manually allocate channels. You can override automatic channel configurations by manually allocating channels within a RUN
command, but you cannot use BACKUP
DEVICE TYPE
or RESTORE
DEVICE TYPE
to use automatic channels after specifying manual channels with ALLOCATE CHANNEL
.
虽然在配置时指定两个通道来备份,但是在run块里面只分配了一个通道,而备份时是按照run块来备份,所以只分配了一个通道进行备份。
并且,题中说FRA是默认的rman备份区,所以,备份集被存储在FRA区。选A。