zoukankan      html  css  js  c++  java
  • OCP-1Z0-053-V12.02-97题

     

    97.The RECYCLEBIN parameter is set to ON for your database. You drop a table, PRODUCTS, from the

    SCOTT schema.

    Which two statements are true regarding the outcome of this action? (Choose two)

    A. All the related indexes and views are automatically dropped

    B. The flashback drop feature can recover only the table structure

    C. Only the related indexes are dropped whereas views are invalidated

    D. The flashback drop feature can recover both the table structure and its data

    Answer: CD

    答案解析:

    参考:http://blog.csdn.net/rlhua/article/details/12796201

    使用DROP TABLE语句可以将表移至回收站或从数据库中全部删除该表及其所有数据。
    如果不指定PURGE子句,DROP TABLE语句就不会将使用的空间重新释放到表空间中供其它对象使用,而且该空间会继续视为用户的空间限额。删除表会使从属对象失效并删除表的对象权限。删除表后,在数据库中会失去表的所有数据以及与表关联的所有索引。
    语法
    DROP TABLE table [PURGE] 
    在该语法中,table是表的名称。
    准则
    • 删除表中的所有数据。
    • 保留视图和同义词,但不再有效。
    • 提交所有待定的事务处理。
    • 只有表的创建者或具有DROP ANY TABLE权限的用户才能删除表。
    注:使用FLASHBACK TABLE语句可从回收站中还原已删除的表。

  • 相关阅读:
    使用iframe从网页调起移动端应用
    综合练习:词频统计
    组合数据类型练习
    python 绘制五星红旗
    熟悉常用的Linux操作
    大数据概述
    windowBackground打造闪屏页
    安卓日期选择对话框
    c语言语法分析器
    C语言文法
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316446.html
Copyright © 2011-2022 走看看