Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save JustinMcNamara74/8b0b2628379b20dcbe044d60d66fc252 to your computer and use it in GitHub Desktop.
Save JustinMcNamara74/8b0b2628379b20dcbe044d60d66fc252 to your computer and use it in GitHub Desktop.
Lists recently modified stored procedures.
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