Skip to content

Instantly share code, notes, and snippets.

@calevano
Created February 21, 2018 00:03
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 calevano/aafe995193946aaa12d264d556b82ee4 to your computer and use it in GitHub Desktop.
Save calevano/aafe995193946aaa12d264d556b82ee4 to your computer and use it in GitHub Desktop.
Search definition in Store Procedure in sqlServer
SELECT
ROUTINE_NAME ,ROUTINE_DEFINITION
FROM
INFORMATION_SCHEMA.ROUTINES
WHERE
ROUTINE_DEFINITION LIKE '%Letter%'
AND ROUTINE_TYPE = 'PROCEDURE'
ORDER BY ROUTINE_NAME
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment