052-74

The database is running in ARCHIVELOG mode. Examine the initialization parameters and their
values set to enable archiving on your database server:
LOG_ARCHIVE_FORMAT = arch_%t_%s_%r.arc
LOG_ARCHIVE_DEST_1 = 'LOCATION = /disk1/archive'
DB_RECOVERY_FILE_DEST = '/u01/oradata'
DB_RECOVERY_FILE_DEST_SIZE = 20G
Which statement is true regarding the archived redo log files?
A.It will be created on the local file system.
B.It will be created only in the Flash Recovery Area.
C.It will be created in the location specified by the LOG_ARCHIVE_DEST_1 parameter and the default location $ORACLE_HOME/dbs.
D.It will be created in the location specified by the LOG_ARCHIVE_DEST_1 parameter and location specified by the DB_RECOVERY_FILE_DEST parameter.

LOG_ARCHIVE_FORMAT 参数是用来指定归档日志文件的名称格式
LOG_ARCHIVE_DEST_n:默认值为’’。 Oracle 最多支持把日志文件归档到 10 个地方,n 从 1 到 10。归档地址可以为本地磁盘,或者网络设备DB_RECOVERY_FILE_DEST:指定闪回恢复区路径

原文地址:https://www.cnblogs.com/Babylon/p/8004934.html