zoukankan      html  css  js  c++  java
  • 052-149

    You executed the following command to create a tablespace called SALES_DATA:
    SQL> CREATE TABLESPACE sales_data DATAFILE SIZE 100M
    SEGMENT SPACE MANAGEMENT AUTO;
    Which two statements are true about the SALES_DATA tablespace? (Choose two.)
    A.The database automatically determines the extent-sizing policy for the tablespace.
    B.The segments are automatically shrunk when the contents are removed from them.
    C.The allocation of extents within the tablespace is managed through the dictionary tables.
    D.The space utilization description of the data blocks in segments is recorded in bitmap blocks.
    E.The space utilization description of the data blocks in segments is managed through free lists.

    SEGMENT SPACE MANAGEMENT AUTO--说明启用了 assm
    A:正确,assm
    B:错误,这个应该属于表压缩的功能
    C:错误,这个说的是数据字典管理的表空间
    D:正确,这里启用了 assm,因此使用的是位图
    E:错误

  • 相关阅读:
    模板
    模板
    模板
    模板
    2017-2018 ACM-ICPC Asia Tsukuba Regional Contest
    牛客
    软件工程
    Codeforces Round 696(Div.2)
    Atcoder ARC111 contest
    Codeforces Educational Round 100(Div.2)
  • 原文地址:https://www.cnblogs.com/Babylon/p/8037443.html
Copyright © 2011-2022 走看看