首先看下Oracle的邏輯結構
請注意綠色的線的關系,一個segment[段]可以跨多個數據文件的。例如一張表可能存儲在多個數據文件中。 一個數據文件由一個或者多個extent[區]組成。 這是表空間的管理選項

eg:
15: You executed the following command to create a tablespace called SALES_DATA: SQL> CREATE TABLESPACE sales_data DATAFILE SIZE 100M SEGMENT SPACE MANAGEMENTAUTO; 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.
AD
這題是考得選項的默認值,extent management的的默認選項是local.所以c是錯誤的。 segement的默認值是auto用的是bitmap來管理塊的所以E是錯誤的。 prtfree 10的意思是dbblock的快用到90%則使用其他的快,它的值影響segement的大小,如果光是刪除數據的話 是影響不到segement的。(牽強些的解釋)
新聞熱點
疑難解答