Skip to content

Instantly share code, notes, and snippets.

@yayoc
Created June 5, 2014 01:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yayoc/720977ed6860ab8e2915 to your computer and use it in GitHub Desktop.
Save yayoc/720977ed6860ab8e2915 to your computer and use it in GitHub Desktop.
Search Sql Server modules
SELECT O.type,O.name,M.definition
FROM sys.sql_modules AS M
JOIN sys.objects AS O ON M.object_id = O.object_id
WHERE M.definition LIKE '%keyword%'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment