top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What’s the difference between a clustered and a non-clustered index?

+3 votes
293 views
What’s the difference between a clustered and a non-clustered index?
posted Jan 19, 2014 by Vishvachi Tiwari

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

A clustered index directly affects the way tabled data is stored on a specific disk. This means that when a clustered index is used, data is stored in sequential rows based on the index column value. This is why a table can only contain a single clustered index. Non-clustered indexes directly affect the way physical data is stored and managed within SQL Server.

answer Jan 19, 2014 by Atul Mishra
...