vote up 1 vote down star

I can drop a table if it exists using the following code but do not know how to do the same with a constraint:

IF EXISTS(SELECT 1 FROM sys.objects WHERE OBJECT_ID = OBJECT_ID(N'TableName') AND type = (N'U')) DROP TABLE TableName
go

I also add the constraint using this code:

ALTER TABLE [dbo].[TableName] 
  WITH CHECK ADD CONSTRAINT [FK_TableName_TableName2] FOREIGN KEY([FK_Name])
    REFERENCES [dbo].[TableName2] ([ID])
go
flag

3 Answers

vote up 8 vote down check
IF EXISTS (SELECT * FROM sys.foreign_keys WHERE object_id = OBJECT_ID(N'dbo.FK_TableName_TableName2') AND parent_object_id = OBJECT_ID(N'dbo.TableName'))

ALTER TABLE [dbo.TableName] DROP CONSTRAINT [FK_TableName_TableName2]
link|flag
@TopBanana: you should add the schema 'dbo.' – Mitch Wheat Jan 27 at 10:28
..and the missing 2 from the constraint name ;-) – Mitch Wheat Jan 27 at 10:29
its the if exists bit i am really after.. sorry. i'll update my question so it's more clear! – john Jan 27 at 10:30
Sorry John missed that bit, I'll update my answer – James L Jan 27 at 10:31
cheers thats the one! – john Jan 27 at 10:40
vote up 2 vote down
ALTER TABLE [dbo].[TableName]
    DROP CONSTRAINT FK_TableName_TableName2
link|flag
vote up 0 vote down

Good Reply Dude

Thanks a lot!!!!!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.