Answers for "stored procedure search in all tables"

SQL
2

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

SELECT Name
FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%TableNameOrWhatever%'
Posted by: Guest on May-26-2020

Code answers related to "stored procedure search in all tables"

Code answers related to "SQL"

Browse Popular Code Answers by Language