2

Possible Duplicate:
What are the differences between a clustered and a non-clustered index?

What are the difference between clustered and a non-clustered index?

Community
  • 1
  • 1
kingman
  • 51
  • 2
  • 7
  • dup http://stackoverflow.com/questions/91688/what-are-the-differences-between-a-clustered-and-a-non-clustered-index – Keng Dec 07 '10 at 19:05

1 Answers1

3

What are the differences between a clustered and a non-clustered index?

  1. 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.
  2. A non clustered index is a special type of index in which the logical order of the index does not match the physical stored order 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.
Community
  • 1
  • 1
MyHeadHurts
  • 1,514
  • 5
  • 36
  • 87