標籤:oracle 11g ocp題庫解析 認證考試 恩墨學院 甲骨文 oracle ocp認證考試
QUESTION 3
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.
Correct Answer: AD
Explanation/Reference: 段空間管理: 本地管理的資料表空間中的段空間管理方式可指定為: 自動:Oracle DB 使用位元影像管理段中的空閑空間.位元影像描述了段中每個資料區塊的狀態,該狀態與可插入行的塊中的空間量有關.當資料區塊中可用空間增多或減少時,位元影像中會反映資料區塊的新狀態.通過使用位元影像,Oracle DB 可以提高管理空閑空間的自動化程度.因此,這種空間管理方式稱為"自動段空間管理(ASSM)". 手動:此方法指定要使用空閑列表來管理段中的空閑空間.空閑列表是由一些資料區塊組成的列表,這些資料區塊中有可插入行的空間.由於這種管理段空間的方式需要為在資料表空間中建立的方案對象指定並最佳化PCTUSED、FREELISTS和FREELIST GROUPS儲存參數,因此這種方式稱為"手動段空間管理".支援使用此方法是為了向後相容,建議使用ASSM. 可通過dba_tablespaces查看分區和段空間管理方式: [email protected]> select tablespace_name,extent_management,segment_space_management from dba_tablespaces; TABLESPACE_NAME EXTENT_MAN SEGMEN ---------------- ---------- ------ SYSTEM LOCAL MANUAL SYSAUX LOCAL AUTO TEMP LOCAL MANUAL USERS LOCAL AUTO EXAMPLE LOCAL AUTO UNDOTBS1 LOCAL MANUAL |
更多題庫解析,敬請關註:http://ke.qq.com/cgi-bin/courseDetail?course_id=36323
Oracle OCP認證考試題庫解析052-3