Friday, July 27, 2012

Can we create clustered index on non primary key column?




Yes we can create clustered index on non-primary key column but that column must be unique and the primary key column of that table must have non-clustered index.

By default primary key column contains clustered index so its recommended to create such non-primary key clustered index column first and then should create primary key column so in such case the primary key on that column will be with non-clustered.


But its highly recommended to create primary key column as a clustered indexed column.

No comments: