How to get the list of all stored procedures using a specific table
Big projects with a lot of stored procedures can be a mess to maintain.
If you change one field in a table, you have to check if there is no side effect in the stored procedures using this table.
This “sp_depends” system stored procedure can help you finding your stored procedures using the table you modified.
Just create [...]
