Browse by Tags

How do I find the CHECK constraints that depend on a specified CLR user-defined type?
Published 11 December 7 9:23 AM | SSQA.net
Here is the another TSQL script from BOL to find the CHECK constraints that depend on a specified CLR user-defined type? USE <database_name>; GO SELECT SCHEMA_NAME(o.schema_id) AS schema_name ,OBJECT_NAME(o.parent_object_id) AS table_name ,OBJECT_NAME...