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:错误

原文地址:https://www.cnblogs.com/Babylon/p/8037443.html