zoukankan      html  css  js  c++  java
  • 053-268

    You are using Recovery Manager (RMAN) for backup and recovery operations with a recovery
    catalog. You have been taken database backups every evening. On November 15, 2007, at 11:30 AM,you were informed that the USER_DATA tablespace was accidentally dropped.
    On investigation, you found that the tablespace existed until 11:00 AM, and important transactions were done after that.
    So you decided to perform incomplete recovery until 11:00 AM. All the archive logs needed to perform recovery are intact. In NOMOUNT state you restored the control file that has information about the USER_DATA tablespace from the latest backup. Then you mounted the database.
    Identify the next set of commands that are required to accomplish the task?
    A.RMAN> run
    {
    SET UNTIL TIME 'Nov 15 2007 11:00:00';
    RESTORE DATABASE;
    RECOVER DATABASE;
    }
    B.RMAN> run
    {
    SET UNTIL TIME 'Nov 15 2007 11:00:00';
    RESTORE DATABASE;
    RECOVER DATABASE USING BACKUP CONTROLFILE;
    }
    C.RMAN> run
    {
    RESTORE DATABASE;
    RECOVER DATABASE UNTIL TIME 'Nov 15 2007 11:00:00';
    }
    D.RMAN> run
    {
    RESTORE TABLESPACE user_data;
    RECOVER TABLESPACE user_data UNTIL TIME 'Nov 15 2007 11:00:00';
    }

      此题考点是不完全恢复。由于进行了大量的事务,显然是要进行数据库级别的不完全的恢复,将所有相关的事务均回滚。
      在数据库 mount 之后,指定时间点或 SCN 或 log 号,就可以进行恢复了。 A 正确。 BCD 的语法错误恢复完成后以 resetlogs 方式打开数据库

  • 相关阅读:
    File初识和练习
    图床
    servlet
    css伪类及伪元素用法
    css中的定位position
    块级元素与行级元素
    清除浮动
    CSS浮动
    fastjson 1.2.6以下版本 解析字符串末尾出现/x会陷入死循环 报oom异常
    记一次select2赋值动态数组的坑
  • 原文地址:https://www.cnblogs.com/Babylon/p/7844202.html
Copyright © 2011-2022 走看看