【第17题】【063题库】2019年OCP12c认证1Z0-063考试题库大全
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询OCP 12c考试考3科,分别是071、062、063,之前071和062都已经做过解析,这里开始063题库解析,希望对考063的同学有帮助,顺利通过063考试。
OCP解析公开课时间:【每周五晚8点】
OCP解析公开课地址:http://ke.qq.com/course/326223
OCP解析群资料分享:1015267481 验证:ocp
-------------------------------------------------------
17题、Because of logical corruption of data in a table, you want to recover the table from an RMAN backup to a specified point in time.
Examine the steps to recover this table from an RMAN backup:
1. Determine which backup contains the table that needs to be recovered.
2. Issue the recover table RMAN command with an auxiliary destination defined and the point in time specified.
3. Import the Data Pump export dump file into the auxiliary instance.
4. Create a Data Pump export dump file that contains the recovered table on a target database.
Identify the required steps in the correct order.
A. 1, 4,3
B. 1, 2
C. 1, 4, 3,2
D. 1, 2, 4
Answer: B
Explanation:(可以在表 recovery 的时候指定导出什么表,同时导入到目标数据库,所以无需手动的导出和导入
RMAN>
RECOVER TABLE HR.PDB_EMP OF PLUGGABLE DATABASE pdbprod1 UNTIL SEQUENCE 76
AUXILIARY DESTINATION '/u03/res/'
DATAPUMP DESTINATION '/u03/dmp/'
REMAP TABLE 'HR'.'PDB_EMP':'EMP_RECVR';
注意,把 hr 的 pdb_emp 表导出来后再导入,同时改名 emp_recvr。)