Created
June 16, 2017 23:25
-
-
Save JustinMcNamara74/8b0b2628379b20dcbe044d60d66fc252 to your computer and use it in GitHub Desktop.
Lists recently modified stored procedures.
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 TOP 100 name, create_date, modify_date | |
FROM sys.objects | |
WHERE type = 'P' | |
ORDER BY modify_date DESC |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment