Script to List User Defined Functions, Procedure, Trigger in PostgreSQL database

By    

How to list functions in PostgreSQL database?

Using the below mentioned query we can list all functions in a PostgreSQL database.

SELECT  DISTINCT routines.routine_name
FROM    information_schema.routines
WHERE   routines.specific_schema='public'
ORDER BY routines.routine_name;

Please visit other related articles

PostgreSQL: Add macros in PgAdminIII
PostgreSQL: Export PostgreSQL data in to excel file
PostgreSQL: How to restrict the user access to the databases in Postgresql based on the permission
PostgreSQL: List table details using Alt+F1 in PostgreSQL
PostgreSQL: How to get ROW_COUNT of last executed query in PostgreSQL like MS SQL @@ROWCOUNT ?

0 comments