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

    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

    要执行灾难恢复,至少需要以下备份:
    • 数据文件的备份
    • 在备份之后生成的相应归档重做日志
    • 至少一个控制文件自动备份
    •数据库的 DBID(这个有文件就可以查询)
    基本过程:
    • 使用自动备份还原参数文件。
    • 启动目标数据库实例。
    • 从自动备份还原控制文件。
    • 装载数据库。
    • 还原数据文件。
    • 恢复数据文件。
    • 使用 RESETLOGS 选项打开数据库。
      此题考点是在新主机上进行不完全恢复,归档和备份都存在。在新主机上首先要恢复参数文件,设置 DBID连接到恢复目录数据库上,然后使用自动备份恢复参数文件。使用恢复的参数文件就可以启动数据库到nomout,然后恢复控制文件(也可以不指定 DBID,使用辅助实例来恢复控制文件)。再将实例启动到 mout,restore 数据库,recover 数据库,resetlogs 打开数据库。


  • 相关阅读:
    -1.#IND000 &&图像类型转换
    三维点集拟合:平面拟合、RANSAC、ICP算法
    深度学习:又一次推动AI梦想(Marr理论、语义鸿沟、视觉神经网络、神经形态学)
    三维重建:Kinect几何映射-SDK景深数据处理
    《SLIC Superpixels》阅读笔记
    中国企业系列
    关于抠图的一些文章方法收集
    数学空间引论
    PCL:解决PCL和OpenCV冲突的方法
    游戏开发:OpenGL入门学习
  • 原文地址:https://www.cnblogs.com/Babylon/p/7843866.html
Copyright © 2011-2022 走看看