SQL List all Foreign Keys referencing a given table in SQL Server - 20.11.19 | 27.11.19 - ErcanOPAK EXEC sp_fkeys 'TableName' You can also specify the schema: EXEC sp_fkeys @pktable_name = 'TableName', @pktable_owner = 'dbo' Related posts:How to find records based on CAPITAL and small letters in SQL Query?How to hide message window in MS SQL ServerSQL Query to Find and Replace text in a stored proceduresDate and Time Conversions in SQL Server Post Views: 96