Skip to content

Instantly share code, notes, and snippets.

@jptoto
Created June 13, 2011 16:01
Show Gist options
  • Save jptoto/1023065 to your computer and use it in GitHub Desktop.
Save jptoto/1023065 to your computer and use it in GitHub Desktop.
Searching for txt in a Stored Proc
SELECT ROUTINE_NAME, ROUTINE_DEFINITION
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_DEFINITION LIKE '%TEXT%'
AND ROUTINE_TYPE='PROCEDURE'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment