In one of our tables there is an existing non-clustered Primary Key on a UNIQUEIDENTIFIER
column, heavily used in FKs.
We now want to add an IDENTITY
column and create a unique clustered index for this.
I do not need an explanation of clustered vs. non-clustered or about "what is a primary key?".
I want to
- drop all indexes
- add the new column with
IDENTITY
- create the unique clustered index on the new column
- re-create all indexes
My question are:
- Will the new clustered index be used as look up key?
- Will the Primary Key use the clustered key?
- What implications could be, using a clustered key and a non-clustered PK side by side?
Thank you!