By querying the Procedures table in Sys as given below, we can find the SQL Server stored procedures that refers particular column are tables.
The result will be the list of SQL Server stored procedure names that refers to particular table or column.
SELECT Name
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%TableNameOrColumnName%'
The result will be the list of SQL Server stored procedure names that refers to particular table or column.