Question:Which of the following is a valid code to delete a clustered index with a PRIMARY KEY constraint in SQL Server 2008?
A LTER TABLE Production.ProductCost DROP CONSTRAINT PK_Product WITH (ONLINE = ON) GO
B ALTER TABLE Production.ProductCostHistory DROP CONSTRAINT PK_Product DROP INDEX Index_Product WITH (ONLINE = ON) GO
C DROP INDEX Index_Product ON Production.ProductCost GO
D None of these
+ AnswerA
+ Report