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
Excluding the system stuff:
select proname from pg_proc where proowner <> 1;