zoukankan      html  css  js  c++  java
  • 不完全恢复操作步骤

    1. Shut down the database and perform a backup.
    2. Restore all the data files.
    3. Mount the database.
    4. Recover the database.
    5. Without applying all the redo log files, open the database using the RESETLOGS option.
    6. Back up the database.

    注意:不完全恢复只能针对所有数据文件,不能针对某个单独的文件和表空间.

    1:10g 以前,在进行了不完全恢复用resetlogs 打开后,必须立即执行全备份,因为日志序号被复位,以防止后续日志被应用。
    2:10g 后,控制文件保留了resetlogs 之前的归档日志序列,并且日志recid 继续增长,允许跨越resetlogs 时间点进行完全/不完全恢复。(10g 前,使用当前控制文件不再能够恢复之前的备份)。
    Sql>select recid,stamp,first_change#,first_time,next_change# from v$log_history where recid>###;

  • 相关阅读:
    NSThread 多线程 三种方式
    CABasicAnimation 核心动画
    图片圆角属性
    GCD
    IOS 推送
    IOS 截图
    UIImage 截图
    UIImageView 动画
    AFN 判断网络状态
    Template 模式
  • 原文地址:https://www.cnblogs.com/arcer/p/3242871.html
Copyright © 2011-2022 走看看