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

    You plan to use Flashback Drop feature to recover a dropped table SALES_EMP. No other table with the same name exists in the schema.
    You query RECYCLEBIN and find multiple entries for the SALES_EMP table as follows: You then issue the following statement to recover the table:

    SQL> FLASHBACK TABLE sales_emp TO BEFORE DROP;
    What would be the outcome of the precedent statement?
    A. It retrieves the latest version of the table from the recycle bin
    B. It retrieves the oldest version of the table from the recycle bin
    C. It retrieves the version of the table for which undo information is available
    D. It returns an error because the table name is not specified as per the names in the OBJECT_NAME column

    D错误,可以不用指定对象名,指定相关表名也是可以的。
    C错误,FLASHBACK TABLE...TO BEFORE DROP是基于回收站,并不是基于undo的。
    当有多个对象公用一个表名时,使用FLASHBACK TABLE..TO BEFORE DROP,最新删除的表的条目会从回收站恢复。B错,A对
    查询回收站中的对象:
    SELECT object_name,original_name,createtime FROM recyclebin;

     

  • 相关阅读:
    移动触摸事件之二
    移动touch事件之一
    Phonegap创建项目语法
    JS自定义去除字符串左右两边的指定字符
    video标签常用属性及说明
    html5开发之viewport使用
    页面事件总结
    缓存与预取
    修改JQM的默认配置属性
    JQM事件详解
  • 原文地址:https://www.cnblogs.com/Babylon/p/7844309.html
Copyright © 2011-2022 走看看