- 最后登录
- 2019-6-19
- 在线时间
- 18 小时
- 威望
- 0
- 金钱
- 354
- 注册时间
- 2016-10-13
- 阅读权限
- 10
- 帖子
- 232
- 精华
- 1
- 积分
- 0
- UID
- 2488
|
62#
发表于 2016-10-26 11:26:38
61:
You are working on an instance started using the SPFILE. You want to move the Flash Recovery Area of your database to a new location. You want the Flashback log files to be stored in the new location. Given below are the steps to accomplish the task in random order:
1) Shut down the instance.
2) Change the value of the DB_RECOVERY_FILE_DEST initialization parameter to a new value.
3) Execute the ALTER DATABASE FLASHBACK OFF command.
4) Start up the instance and mount the database.
5) Execute the ALTER DATABASE FLASHBACK ON command.
6) Open the database.
Select the correct order in which these tasks need to be performed.
A. 2, 1, 4, 3, 5, 6
B. 1, 4, 3, 2, 6, 5
C. 1, 4, 2, 6, 3, 5
D. 3, 2, 1, 4, 5, 6
61:
你正在一个使用spfile启动的数据库实例工作。你想移动Flash Recovery Area到一个新的位置。你想Flashback 日志存储在新的位置。下面是完成这项任务的随机排序步骤:
1) 关闭实例
2) 改变参数DB_RECOVERY_FILE_DEST的值为新的值
3) 执行ALTER DATABASE FLASHBACK OFF命令
4) 启动数据库实例并mount数据库
5) 执行ALTER DATABASE FLASHBACK ON命令
6) 打开数据库
选择正确的执行顺序
A. 2, 1, 4, 3, 5, 6
B. 1, 4, 3, 2, 6, 5
C. 1, 4, 2, 6, 3, 5
D. 3, 2, 1, 4, 5, 6
答案:A
本题是想考查更换Flash Recovery Area的位置
参考官方文档:
http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmmaint.htm#BRADV89618 |
|