Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 New to SQL Server Programming
 how to view all the constraints in sql server

Author  Topic 

archanasql
Starting Member

27 Posts

Posted - 2008-02-02 : 01:14:27
hi,

how to view all system constraints in sql server..

visakh16
Very Important crosS Applying yaK Herder

52326 Posts

Posted - 2008-02-02 : 01:19:31
Have a look at INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE view

SELECt * FROM INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE
Go to Top of Page
   

- Advertisement -