Find stored procedure related to table in database in SQL Server

Many a times need arises to find all stored procedures related to a table in the database. The below queries come handy then. — Query 1 SELECT DISTINCT objects.name, objects.type, comments.text … Continue reading Find stored procedure related to table in database in SQL Server