The following statement will return all the CHECK constraints.
SELECT * FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE CONSTRAINT_TYPE = 'CHECK'
How do I get the expression? For example, I want to see the actually constraint, such as ([ApplicationId]=(8)), being applied to a table.
Thanks!
SQL Server 2005
is this what you are looking for?