开发者

Find a string by searching all stored procs in SQL Server Management Studio 2008

开发者 https://www.devze.com 2023-02-19 00:44 出处:网络
Is there a way to search for a string within all stored procs in SQL Server Ma开发者_如何学Pythonnagement Studio? SELECT *

Is there a way to search for a string within all stored procs in SQL Server Ma开发者_如何学Pythonnagement Studio?


SELECT *
FROM sys.sql_modules
WHERE definition LIKE '%yourstring%'


Have a look at RedGate's SQL Search. It's a Management Studio plugin and a free download. You can search within a given database or across an entire instance.


I always use this;

SELECT Name
 FROM sys.procedures
 WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%SEARCHSTRING%'


In my case, I was looking to get the schema and the name of the stored procedure whenever I search for a specific text or keyword. The code I use and it is working for me is:

USE [your_DB_name];
GO
SELECT [Scehma]=schema_name(o.schema_id), o.Name 
FROM sys.sql_modules m
 INNER JOIN sys.objects o
ON o.object_id = m.object_id
WHERE m.definition like '%your keyword%'
GO

The result is simple and as follows:

----------------------------------------------
|    Schema    |    Name                     |
----------------------------------------------
|    dbo       |  stored_procedure_name      |
----------------------------------------------
...
and so on (if the keyword exists in more than one stored procedure)
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号