vote up 13 vote down star
8

Are disabling and enabling FK constraints supported in SQL Server? Or is my only option to 'drop and then re-'create' the constraints?

flag

69% accept rate
For folks asking "why" I would want to do this: It is for a test environment where I want to be able to remove and load test data from multiple tables without needing to maintain and specify the order of how the data is loaded. Data integrity is not that important for this scenario. – Ray Vega Oct 1 '08 at 18:48

4 Answers

vote up 15 vote down check

If you want to disable all constraints in the database just run this code:

-- disable all constraints
EXEC sp_msforeachtable "ALTER TABLE ? NOCHECK CONSTRAINT all"

to switch them back on, run: (the print is optional of course and it is just listing the tables)

-- enable all constraints
exec sp_msforeachtable @command1="print '?'", @command2="ALTER TABLE ? WITH CHECK CHECK CONSTRAINT all"

I find it useful when populating data from one database to another. It is much better approach then dropping constraints. As you mentioned it comes handy when dropping all the data the database and repopulating it (say in test environment).

If you are deleting all the data you may find this solution to be helpful.

Also sometimes it is handy to disable all triggers as well, you can see the complete solution here

link|flag
I had to make a mass migration because I created a new Sql Server database to restructure, and this code was very helpful to make my migration code work – Tony Peterson Jan 13 '09 at 15:50
vote up 12 vote down

http://www.sqljunkies.com/WebLog/roman/archive/2005/01/30/7037.aspx

-- Disable all table constraints

ALTER TABLE MyTable NOCHECK CONSTRAINT ALL

-- Enable all table constraints

ALTER TABLE MyTable CHECK CONSTRAINT ALL

-- Disable single constraint

ALTER TABLE MyTable NOCHECK CONSTRAINT MyConstraint

-- Enable single constraint

ALTER TABLE MyTable CHECK CONSTRAINT MyConstraint
link|flag
a good find, but note that you still cannot truncate the table without removing the foreign key constraints – Steven A. Lowe Oct 1 '08 at 18:41
and you will also need to be aware that when you turn the constraints back on and do a data integrity check, your data may fail and fixng an issue like that can be a nightmare if the failing data is at the end of a long string of linked constraints. – jimoc Oct 1 '08 at 18:44
vote up 0 vote down

The SQL-92 standard allows for a constaint to be declared as DEFERRABLE so that it can be deferred (implicitly or explicitly) within the scope of a transaction. Sadly, SQL Server is still missing this SQL-92 functionality.

For me, changing a constraint to NOCHECK is akin to changing the database structure on the fly -- dropping constraints certainly is -- and something to be avoided (e.g. users require increased privileges).

link|flag
vote up -1 vote down

I'm supporting ScottStonehouse - you most definitely can disable constraints when manipulating data. HOWEVER: as a general rule you should NEVER do this. One of the only exceptions would be when you are performing large scale data manipulations where allowing the database to perform constraint checks for every record affected will hurt performance too much. In this case you disable the constraints to load the data quickly, but then you must perform data validation at the end and reinstate the constraints.

link|flag

Your Answer

Get an OpenID
or

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