- 最后登录
- 2016-11-20
- 在线时间
- 7 小时
- 威望
- 0
- 金钱
- 155
- 注册时间
- 2016-7-15
- 阅读权限
- 150
- 帖子
- 76
- 精华
- 0
- 积分
- 0
- UID
- 2455
|
42#
发表于 2016-7-28 11:02:50
77:
You are using Recovery Manager (RMAN) with a recovery catalog to back up your production
database. The backups and the archived redo log files are copied to a tape drive on a daily basis.
Because of media failure, you lost your production database completely along with the recovery catalog database. You want to recover the target database and make it functional. You consider performing the following steps to accomplish the task:
1) Restore an autobackup of the server parameter file.
2) Restore the control file
3) Start the target database instance
4) Mount the database
5) Restore the data files
6) Open the database with RESETLOGS option
7) Recover the data files
8) Set DBID for the target database
Which option illustrates the correct sequence that you must use?
A. 8, 1, 3, 2, 4, 5, 7, 6
B. 1, 8, 3, 4, 2, 5, 7, 6
C. 1, 3, 4, 2, 8, 5, 6, 7
D. 1, 3, 2, 4, 6, 5, 7, 8
Answer: A
77 :
你使用RMAN的恢复目录来保护你的数据库。备份和归档日志文件每天备份到磁带上。由于介质故障,你完全丢失了你的数据库,只剩下了恢复目录数据库。你想恢复目标数据库并使其工作。你考虑使用下列步骤来完成这个步骤:
1)从自动备份中重建参数文件
2)重建控制文件
3)启动目标库实例
4)挂载数据库
5)重建数据文件
6)使用resetlogs选项打开数据库
7)恢复数据文件
8)为目标数据库设置DBID
下面哪个选项说明了你必须使用的正确顺序?
A. 8, 1, 3, 2, 4, 5, 7, 6
B. 1, 8, 3, 4, 2, 5, 7, 6
C. 1, 3, 4, 2, 8, 5, 6, 7
D. 1, 3, 2, 4, 6, 5, 7, 8
答案:A
要执行灾难恢复,至少需要以下备份:
• 数据文件的备份
• 在备份之后生成的相应归档重做日志
• 至少一个控制文件自动备份
•数据库的DBID(这个有文件就可以查询)
基本过程:
• 使用自动备份还原参数文件。
• 启动目标数据库实例。
• 从自动备份还原控制文件。
• 装载数据库。
• 还原数据文件。
• 恢复数据文件。
• 使用RESETLOGS选项打开数据库。
此题考点是在新主机上进行不完全恢复,归档和备份都存在。在新主机上首先要恢复参数文件,设置DBID连接到恢复目录数据库上,然后使用自动备份恢复参数文件。使用恢复的参数文件就可以启动数据库到nomout,然后恢复控制文件(也可以不指定DBID,使用辅助实例来恢复控制文件)。再将实例启动到mout,restore 数据库,recover 数据库,resetlogs打开数据库。
A:正确
参考官方文档 :
http://docs.oracle.com/cd/E25054 ... madvre.htm#i1006453
78:
Examine the following ALTER command:
SQL> ALTER DISKGROUP dgroup1 UNDROP DISKS;
What is the purpose of the command?
A. It cancels all pending disk drops within the disk group.
B. It restores disks that are being dropped as the result of a DROP DISKGROUP operation
C. It mounts disks in the disk group for which the drop-disk operation has already been completed
D. It restores all the dropped disks in the disk group for which the drop-disk operation has already been completed
E. It adds previously dropped disks back into the disk group
Answer: A
78:
检查下列ALTER 命令:
SQL> ALTER DISKGROUP dgroup1 UNDROP DISKS;
这个命令的目的是什么?
A.其取消磁盘组上所有挂起的磁盘
B.这个会重建那些会用DROP DISKGROUP操作正在被删除的磁盘
C.其会挂载那些已经完成删除操作的磁盘组
D.会重建所有那些已经完成删除操作的磁盘组
E.其将之前删除的磁盘组增加到磁盘组
答案:A
此题考点是磁盘组undrop 选项的用法,使用这个选项可以取消正在从磁盘组删除的磁盘。通过指定磁盘组名称或者使用ALL子句,来取消那些准备删除的磁盘组。
这个选项不会关联那些已经被删除的磁盘或磁盘组。这个操作是一个长时间的操作,可以通过V$ASM_OPERATION视图查询ASM操作的详细信息。
参考官方文档:http://docs.oracle.com/cd/E11882 ... 1007.htm#SQLRF55558
|
|