sqlserver 3a how to search a table used in particular stored procedure

Solutions on MaxInterview for sqlserver 3a how to search a table used in particular stored procedure by the best coders in the world

showing results for - "sqlserver 3a how to search a table used in particular stored procedure"
Stevie
25 Jun 2016
1SELECT Name
2FROM sys.procedures
3WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%TableNameOrWhatever%'