Click here to Skip to main content
15,885,366 members
Articles / Database Development / SQL Server
Tip/Trick

Searching within all the Stored Procedures in a database

Rate me:
Please Sign up or sign in to vote.
3.00/5 (1 vote)
15 Mar 2012CPOL 13.5K   3   2
You can search for any string with in the TSQL scripts of all the Stored Procedures in a database using the syscomments table.

Introduction

Sometimes we may want to find out which procedure updates a particular column to a given status, which all procedures are joining two given tables etc. If we can search with in the stored procedure text it will enable us to isolate the problem and rectify bugs faster.

Using the code

Just query the syscomments table that stores all the TSQL scripts of the procedures. The below query also joins sys.objects also to find out the created and last modified time of the stored procedures.

SQL
SELECT so.name ProcedureName, TEXT
, so.create_date [Created Date]
, so.modify_date [Modified Date]
FROM SysComments sc
JOIN Sys.Objects so ON OBJECT_NAME(sc.id) = so.name
WHERE Text LIKE '%Sample%'

Note that this script works only with SQL Server

License

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


Written By
Technical Lead
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMessage Closed Pin
26-Mar-14 22:03
praveendubey1726-Mar-14 22:03 
QuestionThanks, but... Pin
VMAtm19-Mar-12 1:59
VMAtm19-Mar-12 1:59 

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.