Are disabling and enabling foreign key constraints supported in SQL Server? Or is my only option to 'drop and then re-'create' the constraints?
|
|
If you want to disable all constraints in the database just run this code:
To switch them back on, run: (the print is optional of course and it is just listing the tables)
I find it useful when populating data from one database to another. It is much better approach than dropping constraints. As you mentioned it comes handy when dropping all the data in 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. |
|||||||||||||||||||||
|
|
http://www.sqljunkies.com/WebLog/roman/archive/2005/01/30/7037.aspx
|
|||||||||||
|
|
I had a similar situation where I had no time to analyze the entire schema, so I did what YourdanGeorgiev suggested.
Run the code above and save the results for both drop and recreate, then execute all the drops followed by your code and then recreate the constraints using the results from the second query. |
||||
|
|
I do agree with you, Hamlin. When you are transfer data using SSIS or when want to replicate data, it seems quite necessary to temporarily disable or drop foreign key constraints and then re-enable or recreate them. In these cases, referential integrity is not an issue, because it is already maintained in the source database. Therefore, you can rest assured regarding this matter. |
|||||
|
|
||||
|
|
|
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). |
|||
|
|
|
I use this script to check constraint status. it's very helpfull
|
|||
|
|