Just a quick and simple question: in PostgreSQL, how do you list the names of all stored functions/stored procedures using a table using just a SELECT statement, if possible? If a simple SELECT is insufficient, I can make do with a stored function.

My question, I think, is somewhat similar to this other question, but this other question is for SQL Server 2005:
http://stackoverflow.com/questions/119679/list-of-stored-procedure-from-table

(optional) For that matter, how do you also list the triggers and constraints that use the same table in the same manner?

link|improve this question
feedback

5 Answers

SELECT  proname
FROM    pg_catalog.pg_namespace n
JOIN    pg_catalog.pg_proc p
ON      pronamespace = n.oid
WHERE   nspname = 'public'
link|improve this answer
feedback

Have a look at my recipe. It reads functions and triggers. It is based on informations from: Extracting META information from PostgreSQL (INFORMATION_SCHEMA)

link|improve this answer
feedback
SELECT  proname, prosrc
FROM    pg_catalog.pg_namespace n
JOIN    pg_catalog.pg_proc p
ON      pronamespace = n.oid
WHERE   nspname = 'public';
link|improve this answer
feedback

Excluding the system stuff:

select proname from pg_proc where proowner <> 1;
link|improve this answer
Why <> 1? On my Postgresql installation, system procedures have a proowner of 10, not 1. – bortzmeyer Oct 13 '09 at 19:43
I didn't know that. The solution is of course to change the "1" accordingly. – windyjonas Oct 14 '09 at 6:59
feedback

You can use the standard information_schema schema to get metadata about your database (it's in the SQL standard, so it should work the same way in different database systems). In this case you want information_schema.routines.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.