You can always manually check the Constraint details using SQL Server Management Studio. However, if you just want to check all the Constraints and related tables in just one report, then this article will be a great help.
To know more about Constraints in SQL server, refer to below TechNet Article
Method-2
Sometimes to troubleshoot issues like Duplicate Keys, Constraints error and etc., we need details of the Keys and their corresponding table. Using INFORMATION_SCHEMA.TABLE_CONSTRAINTS you can view all the contraints for corresponding tables in a database. The bleow query give you result with Constraint_name, table_name and constraint_type columns and display all the Key Constraints in database.
SELECT constraint_name, table_name,constraint_type
FROM
INFORMATION_SCHEMA.TABLE_CONSTRAINTS
INFORMATION_SCHEMA.TABLE_CONSTRAINTS
If you want to display only a specific type of Key constraints then you can use the below script. In this example we will get result of all UNIQUE Key Constraints. You can modify the highlight part in script to get other constraints list.
SELECT constraint_name, table_name,constraint_type
FROM
INFORMATION_SCHEMA.TABLE_CONSTRAINTS
INFORMATION_SCHEMA.TABLE_CONSTRAINTS
WHERE constraint_type =
‘UNIQUE‘
‘UNIQUE‘
ORDER
BY table_name
BY table_name
Method-3
If you want to see the Constraint details for a particular table, then you simply execute
SP_HELP
Let’s say I want to see all the associated constraints for table AccountBase then our script will be
sp_help AccountBase
No comments:
Post a Comment