- 最后登录
- 2019-6-19
- 在线时间
- 18 小时
- 威望
- 0
- 金钱
- 354
- 注册时间
- 2016-10-13
- 阅读权限
- 10
- 帖子
- 232
- 精华
- 1
- 积分
- 0
- UID
- 2488
|
141#
发表于 2016-11-9 19:10:47
140:
You want to enable archiving on your database. Presently, the database is running in NOARCHIVELOG mode.
Given below are the steps to accomplish the task in random order:
1. Shut down the instance.
2. Execute the ALTER DATABASE ARCHIVELOG command.
3. Start up the instance and mount the database.
4. Set the DB_RECOVERY_FILE_DEST initialization parameter to $ORACLE_HOME/dest_1.
5. Open the database.
Which is the correct sequence of steps for accomplishing the task?
A. 4, 1, 3, 2, 5
B. 1, 3, 4, 5, 2
C. 1, 3, 2, 5; 4 not required
D. 4, 1, 5, 2; 3 not required
E. 1, 3, 4, 5; 2 not required
140:
你想启用归档在你的数据库。目前,数据库运行在非归档模式。下面是完成这项任务的步骤以随机的顺序:
1. 关闭实例
2. 执行ALTER DATABASE ARCHIVELOG命令
3. 启用实例并挂载数据库
4. 配置DB_RECOVERY_FILE_DEST参数为$ORACLE_HOME/dest_1
5. 打开数据库
哪个是正确的步骤顺序完成这个任务?
A. 4, 1, 3, 2, 5
B. 1, 3, 4, 5, 2
C. 1, 3, 2, 5; 4 not required
D. 4, 1, 5, 2; 3 not required
E. 1, 3, 4, 5; 2 not required
答案:C
Oracle 11g中系统默认的情况是以DB_RECOVERY_FILE_DEST定义的目录来存放归档日志。
DB_RECOVERY_FILE_DEST参数是默认的flash recovery area的路径,里面存放有归档日志、闪回日志以及rman的备份文件等文件。
LOG_ARCHIVE_DEST:指定归档文件存放的路径,该路径只能是本地磁盘,默认为’’。
LOG_ARCHIVE_DEST_n:默认值为’’。Oracle最多支持把日志文件归档到10个地方,n从1到10。归档地址可以为本地磁盘,或者网络设备。 |
|