I need to remove a highly referenced table in a SQL Server database. How can I get a list of all the foreign key constraints I will need to remove in order to drop the tabl
Most preferable answer by @BankZ
sp_help 'TableName'
additionally for different schema
sp_help 'schemaName.TableName'