Clustered and Non-Clustered Index
What is the difference between a clustered and a non-clustered index?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
NitinPosted Feb 22, 2015, 2:37 AM
Here are the main differences between them:
Prasham SabadraPosted Feb 22, 2015, 12:02 AM
Joginder BangerPosted Feb 21, 2015, 2:16 PM
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 and this is usually made on the primary key. The leaf nodes of a clustered index contain the data pages.
A nonclustered 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 nonclustered index does not consist of the data pages. Instead, the leaf nodes contain index rows.
There can be as many as 249 nonclustered index per table