Created
February 21, 2018 00:03
-
-
Save calevano/aafe995193946aaa12d264d556b82ee4 to your computer and use it in GitHub Desktop.
Search definition in Store Procedure in sqlServer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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