Tagged Questions
2
votes
2answers
160 views
How to drop clustered property but retain primary key in a table. SQL Server 2005
i have the following key:
ALTER TABLE dbo.Table ADD CONSTRAINT PK_ID PRIMARY KEY CLUSTERED
(
ID ASC
)
so i have clustered index and primary key on ID column.
Now i need to drop clustered index (i ...