Deje caer una restricción de clave única en SQL Server
/* To Drop Unique Key Constraint*/
ALTER TABLE Table_Name
DROP CONSTRAINT Constraint_Name
Rajput
/* To Drop Unique Key Constraint*/
ALTER TABLE Table_Name
DROP CONSTRAINT Constraint_Name
example: alter table DropIndex drop index BookId ;