Skip to content

Instantly share code, notes, and snippets.

@RklAlx
Created February 18, 2014 09:04
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 RklAlx/9067241 to your computer and use it in GitHub Desktop.
Save RklAlx/9067241 to your computer and use it in GitHub Desktop.
List Stored Procedures
SELECT proname, prosrc
FROM pg_catalog.pg_namespace n
JOIN pg_catalog.pg_proc p
ON pronamespace = n.oid
WHERE nspname = 'public';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment