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

    You plan to execute the following command to perform a Flashback Database operation in your database:
    SQL> FLASHBACK DATABASE TO TIMESTAMP (SYSDATE -5/24);
    Which two statements are true about this? (Choose two)
    A. The database must have multiplexed redo log files
    B. The database must be in the MOUNT state to execute the command
    C. The database must be in the NOMOUNT state to execute the command
    D. The database must be opened in RESTRICTED mode before this operation
    E. The database must be opened with the RESETLOGS option after the flashback operation

    闪回数据库:
    使 用 ALTER DATABASE FLASHBACK ON 语 句 开 启 数 据 库 闪 回 特 性 。 开 启 后 就 可 以 使用 FLASHBACK DATABASE 语句将数据库闪回到过去的时间点(SCN) --(相当于完成了快速的不完全恢复)
    先决条件:
    1.数据库必须运行在归档模式下
    2.数据库必须被置为 mount 状态,不能打开,并且是使用当前的控制文件。不能使用备份或者重建的控制文件。控制文件被重建后,所有现存的闪回日志信息将丢失。
    3. 数 据 库 中 所 有 在 线 的 表 空 间 必 须 是 启 用 闪 回 数 据 库 的 。 即 所 有 使 用 了ALTER TABLESPACE ... FLASHBACK OFF 的表空间必须离线


  • 相关阅读:
    通过日期获得星期方法
    去掉标签方法
    获取当前时间方法
    根据身份证计算年龄方法
    查询日志
    Vagrant打造Laravel开发环境(LNMP)
    mysql创建索引以及进程过程中出现的问题
    array_to_sql
    Linux创建快捷方式(链接)命令ln
    Mac搭建PHP Phalcon框架
  • 原文地址:https://www.cnblogs.com/Babylon/p/7839219.html
Copyright © 2011-2022 走看看