A very cool trick which I have previously not shared on my blog regarding how to list all the foreign key relationship of table with the help of Stored Procedure sp_fkeys.
Here is a quick script how you can use stored procedure sp_fkeys to list all the foreign key relationship. This stored procedure takes a minimum of two parameters a) name of the table, b) name of the schema.
USE AdventureWorks2012;
GO
EXEC sp_fkeys @pktable_name = N'Employee',
@pktable_owner = N'HumanResources';
Here is the output generated from the script listed above:
Here is an alternate way to list the keys as well - Two Methods to Retrieve List of Primary Keys and Foreign Keys of Database.
Reference: Pinal Dave (http://blog.sqlauthority.com)
Filed under: PostADay, SQL, SQL Authority, SQL Constraint and Keys, SQL Query, SQL Server, SQL Tips and Tricks, T SQL
![](http://stats.wordpress.com/b.gif?host=blog.sqlauthority.com&blog=668536&post=26883&subd=sqlauthority&ref=&feed=1)