| 1. |
What Are The Difference Between Clustered And A Non-clustered Index? |
|
Answer» A clustered INDEX is a special type of index that reorders the way records in the table are physically stored. Therefore table can have only one clustered index. The leaf nodes of a clustered index contain the data pages. A non clustered index is a special type of index in which the logical order of the index does not MATCH the physical stored ordr of the rows on disk. The leaf node of a non clustered index does not CONSIST of the data pages. INSTEAD, the leaf nodes contain index rows. A clustered index is a special type of index that reorders the way records in the table are physically stored. Therefore table can have only one clustered index. The leaf nodes of a clustered index contain the data pages. A non clustered index is a special type of index in which the logical order of the index does not match the physical stored ordr of the rows on disk. The leaf node of a non clustered index does not consist of the data pages. Instead, the leaf nodes contain index rows. |
|