vote up 0 vote down star

when i remove primary key constraint then SQL automatically remove the cluster index and
same for unique it will remove non-cluster index ?

flag

2 Answers

vote up 1 vote down check

A table can have at most one clustered index. The clustered index is the table. The clustered index is removed (the table is turned into a heap) when the clustered index is dropped. The primary key is not necessary the clustered index, but it usually is. The unique constraint/index in question may or may not remove a clustered index depending whether is was or it was not a clustered index.

Updated:

I think I misred the question. If you drop a unique constraint, it will remove the corresponding non-clustred index, yes.

link|flag
smae for primarykey or not ? – KuldipMCA Jul 13 at 6:21
The primary key is most times the clustered key, and it will remove the clustered key when the constrain is dropped. But you have to verify if the clustered index is indeed the primary key or not to know for sure. – Remus Rusanu Jul 13 at 6:25
vote up 1 vote down

Primary keys and other unique constraints are implemented using indexes which can be either clustered or non-clustered. If you remove the constraint you remove the index.

link|flag
please read the question again – KuldipMCA Jul 13 at 6:22
I have read it several times, it's still as comprehensible as the first time I read it. – Matt Howells Jul 13 at 7:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.