soltar a restrição de chave exclusiva no servidor SQL
/* 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 ;