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