SELECT Name
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%TableNameOrWhatever%'
BTW — here is a handy resource for this type of question: Querying the SQL Server System Catalog FAQ
SELECT Name
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%TableNameOrWhatever%'
BTW — here is a handy resource for this type of question: Querying the SQL Server System Catalog FAQ