Quantcast
Channel: Transact-SQL forum
Viewing all articles
Browse latest Browse all 23857

Search Server instead of Database

$
0
0

Is there anyway to search an entire SERVER, instead of individual databases?

Because I have to change the database name and then run the script to find any stored procs where a key word exists.

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 '%MyTable%'


Viewing all articles
Browse latest Browse all 23857

Trending Articles