Hi
Does anyone know a query for listing out all foreign keys in a database with "WITH NOCHECK" description applied to it? (removing them will boost performance and stability).
|
2
|
Hi Does anyone know a query for listing out all foreign keys in a database with "WITH NOCHECK" description applied to it? (removing them will boost performance and stability).
|
||||||
|
|
|
The following will return the name of the foreign keys in the current database that are disabled i.e. WITH NOCHECK For SQL Server 2005/2008:
|
||||||||||||
|
|
|
Here's some code to clarify the difference between is_disabled & isnotrusted.
is_disabled means the constraint is disabled isnottrusted means that sql server does not trust that the column has been checked against the foreign key table. Thus it cannot be assumed that re-enabling the foreign key constraint will be optimized. To ensure the optimizer trusts the column, its best to drop the foreign key constraint & re-create it with the WITH CHECK option (4.) |
|||
|
|
|
|
|
||||||
|
|
|
WITH NOCHECK should only ever be applied to FK's temporarily, or they become useless to the optimiser as your linked article points out. From BOL:
This will identify all your Foreign Keys: (working on the WITH NOCHECK bit...)
Ref. As an aside, in both SQL Server 2000 and 2005, you can check if any data violates a constraint using:
|
|||
|