To get a quick list of all foreign key dependencies for a specific table in SQL Server use:
EXEC sp_fkeys 'tableName'
It will give you a list with all FK dependencies for that table.