You are on page 1of 1

Hector Ivan Castro Morales TIN 800 IOT:An index-organized table has a storage organization that is a variant of a p rimary

B-tree. Unlike an ordinary (heap-organized) table whose data is stored as an unordered collection (heap), data for an index-organized table is stored in a B-tree index structure in a primary key sorted manner. Each leaf block in the index structure stores both the key and nonkey columns. The structure of an index-organized table provides the following benefits: Fast random access on the primary key because an index-only scan is sufficie nt. And, because there is no separate table storage area, changes to the table d ata (such as adding new rows, updating rows, or deleting rows) result only in up dating the index structure. Fast range access on the primary key because the rows are clustered in prima ry key order. Lower storage requirements because duplication of primary keys is avoided. T hey are not stored both in the index and underlying table, as is true with heaporganized tables. LOBs:are designed to support the last kind of data -- unstructured data. Normal : es cuando el indice esta creado por default. Cluster: apuntador

You might also like