Use the below Query to search text in all Store Procedure
SELECT DISTINCT o.name AS Object_Name,o.type_desc
FROM sys.sql_modules m
INNER JOIN sys.objects o
ON m.object_id=o.object_id
WHERE m.definition Like '%\[SearchText\]%' ESCAPE '\'
SELECT DISTINCT o.name AS Object_Name,o.type_desc
FROM sys.sql_modules m
INNER JOIN sys.objects o
ON m.object_id=o.object_id
WHERE m.definition Like '%\[SearchText\]%' ESCAPE '\'
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.