how to search table name in stored procedure in sql server

Solutions on MaxInterview for how to search table name in stored procedure in sql server by the best coders in the world

showing results for - "how to search table name in stored procedure in sql server"
Niko
21 Feb 2017
1SELECT Name
2FROM sys.procedures
3WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%TableNameOrWhatever%'