FOR SQL to drop a constraint
ALTER TABLE [dbo].[tablename] DROP CONSTRAINT [unique key created by sql] GO
alternatively: go to the keys -- right click on unique key and click on drop constraint in new sql editor window. The program writes the code for you.
Hope this helps. Avanish.