Today I've found cool piece of code which lets you know what stored procedure uses some table. Just replace the name in a %Table Name% and it gives you collection of stored procs which uses that table. SELECT
Read more: Yonathan Masovich
Name
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%Table Name%'
Read more: Yonathan Masovich