Introduction to Index Segments (24)

tsinglee發表於2007-09-10

Every nonpartitioned index in an Oracle database has a single index segment to hold
all of its data. For a partitioned index, every partition has a single index segment to
hold its data.
Oracle creates the index segment for an index or an index partition when you issue the
CREATE INDEX statement. In this statement, you can specify storage parameters for
the extents of the index segment and a tablespace in which to create the index
segment. (The segments of a table and an index associated with it do not have to
occupy the same tablespace.) Setting the storage parameters directly affects the
efficiency of data retrieval and storage.

1. 非分割槽索引,有單獨的索引段
2. 分割槽索引,有單獨的索引段
3. 使用CREATE INDEX時,建立索引段
4. 使用CREATE INDEX時,可以指定其儲存引數 , 這些引數直接影響資料提取和儲存的效率
5. 表和索引可以不在(最好不在)同一個表空間中

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10599713/viewspace-968785/,如需轉載,請註明出處,否則將追究法律責任。

相關文章