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.
| 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 viewSELECt * FROM INFORMATION_SCHEMA.CONSTRAINT_COLUMN_USAGE |
 |
|
|
|
|
|