Last active
December 31, 2015 21:49
-
-
Save tun/8049338 to your computer and use it in GitHub Desktop.
List all stored procedures in a MS SQL database
This file contains 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, CREATED, LAST_ALTERED | |
FROM information_schema.routines | |
WHERE ROUTINE_TYPE = 'PROCEDURE' | |
ORDER BY ROUTINE_NAME ASC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment