To Disable a Foreign Key:
ALTER TABLE [TableName] NOCHECK CONSTRAINT [ForeignKeyName];
To Enable a Foreign Key:
ALTER TABLE [TableName] WITH CHECK CHECK CONSTRAINT [ForeignKeyName];
Replace [TableName] with the name of the table and [ForeignKeyName] with the name of the foreign key constraint.