I have a PostgreSQL database with 37 schemas and > 500 functions. I'm trying to locate a specific function but am not seeing it when I manually browse the database tree in pgAdmin.
Is there a command in PostgreSQL to locate the schema that a specific function is in?
Thanks.
pg_dump --schema-only <dbname>and grep/edit the output.\df function_namefrom insidepsqlis your friend.