It seems that some scripts generated by Enterprise Manager* (or not, it doesn\'t matter) created check constraints WITH NOCHECK.
Now when anyone modi
Found it:
Checks all constraints on all tables in the current database, whether the constraint is enabled or not:
DBCC CHECKCONSTRAINTS WITH ALL_CONSTRAINTS
To check only enabled constraints:
DBCC CHECKCONSTRAINTS