Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Searching stored procedures for keyword 1

Status
Not open for further replies.

TomR100

Programmer
Joined
Aug 22, 2001
Messages
195
Location
US
I have a large amount of stored procedures and I need to find out which one populates a certain table. Is there any way to search all the stored procedures without opening each and every one?
 
Indeed there is. A tip I found right here in this forum.

Code:
SELECT * FROM syscomments
WHERE text LIKE '%a_certain_table%'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top