Search All Stored Procedures in All Databases

>>Script Language and Platform: SQL Server
Piece of code to search all stored procedures in all databases for keyword.

Author: Jim Youmans

	
EXEC sp_MSForEachDB 

 'USE ?; 
SELECT DB_NAME(), ROUTINE_NAME 
    FROM INFORMATION_SCHEMA.ROUTINES 
    WHERE ROUTINE_DEFINITION LIKE ''%foobar%''
    AND ROUTINE_TYPE = ''PROCEDURE'''

Disclaimer: We hope that the information on these script pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided “as -is”, without any warranty, whether express or implied, of its accuracy, completeness, or fitness for a particular purpose… Disclaimer Continued

Back to Database Journal Home

Get the Free Newsletter!

Subscribe to Cloud Insider for top news, trends & analysis

Latest Articles