hi all ,
i need help to create a clustered index but i dont have PK in my table .what is the best way to add a clustered index on my table without PK .
clustered-index-without-pk.txt
thanks
hi all ,
i need help to create a clustered index but i dont have PK in my table .what is the best way to add a clustered index on my table without PK .
clustered-index-without-pk.txt
thanks
First of all, let's gets some facts straight - a primary key does not need to be a clustered index, and a clustered index does not need to be a primary key.
So.... creating a clustered index without a primary key, is as simple as
create clustered index CIX_CredentialHistory on CredentialHistory(ID)
20 People are following this question.