Skip to content

Instantly share code, notes, and snippets.

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 juanonsoftware/bcad8a100bf3d8ed0d63b93c18ab0026 to your computer and use it in GitHub Desktop.
Save juanonsoftware/bcad8a100bf3d8ed0d63b93c18ab0026 to your computer and use it in GitHub Desktop.
Search for stored procedures in a given database
SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P'
ORDER BY modify_date desc, create_date desc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment