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

    You executed the following commands in a database session:

    What could have caused the recycle bin to clean up?
    A. There is demand for space from the new table
    B. The undo tablespace does not have sufficient free space
    C. The new table name is the same as the table name in the recycle bin
    D. The temporary tablespace that is assigned to you does not have sufficient free space

      B.D 明显和提议无关,本题是在创建的一张表后,回收站中的对象被自定清理。
      C 错,表被 drop 后,名称对象已经在数据字典中清除,回收站中的有另外的名称。新创建表不会有影响。
      A 对。当空间压力出现的时候,oracle 会自动的清理回收站,释放空间来响应空间压力。先被 drop 的表,先被清理。
      如果是自动拓展的数据库文件,那么表空间的利用率可能经常维持在 99%以上,这样需要分配空间的时候,会首先使用回收站的空间,导致回收站内的对象保留的时间会很短。空间回收在自动拓展之前。
      如果是个人配额达到,那么清理属于释放表空间对象配额、

  • 相关阅读:
    Linux 任务计划
    Linux 进程及作业管理
    算法-动规
    算法-递归
    继承自string 的MyString
    魔兽2-装备
    [小甲鱼]入门学习python笔记 【魔法方法】
    [小甲鱼]入门学习python笔记 【类与对象】
    魔兽1 -备战
    讨厌的大整数加法
  • 原文地址:https://www.cnblogs.com/Babylon/p/7843519.html
Copyright © 2011-2022 走看看