Click here to Skip to main content
15,881,709 members
Articles / Database Development / SQL Server
Alternative
Tip/Trick

Find all Stored Procedures having a given text in it

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
25 Oct 2011CPOL 7.9K   1   2
SELECT DISTINCT so.name FROM dbo.sysobjects so inner join .dbo.syscomments sc on so.id=sc.id WHERE so.xtype='P' AND sc.text like '%SearchString%'Much faster!
SQL
SELECT DISTINCT so.name 
FROM dbo.sysobjects so 
		inner join .dbo.syscomments sc on so.id=sc.id 
WHERE so.xtype='P' AND sc.text like '%SearchString%'

Much faster!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) Multimos
Spain Spain
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalthank you very much Pin
Jaume Pascual26-Oct-11 21:14
Jaume Pascual26-Oct-11 21:14 
GeneralIn some rare cases this query will return in-correct result,... Pin
Basavaraj P Biradar26-Oct-11 5:29
Basavaraj P Biradar26-Oct-11 5:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.