Re: Dump SQL DDL of all functions in DB - Mailing list pgsql-admin

From Jerry Sievers
Subject Re: Dump SQL DDL of all functions in DB
Date
Msg-id 8739hay3yc.fsf@comcast.net
Whole thread Raw
In response to Dump SQL DDL of all functions in DB  ("Bradley Holbrook, Servillian Technology" <bholbrook@servillian.com>)
List pgsql-admin
"Bradley Holbrook, Servillian Technology" <bholbrook@servillian.com>
writes:

> Anyone know how to dump the DDL of every function in a schema into one file?
>
> Essentially, Iùd like to do something like:
>
> øfunctions ddl dump cmdù public functions.sql

select pg_get_functiondef(p.oid) || ';'
from pg_proc p
join pg_namespace n on p.pronamespace = n.oid
where n.nspname = 'public'
;
psql -Atq -f...

HTH

> Bradley A Holbrook
>
> Sr. Web Developer
>
> Servillian Technology Ltd
>
> http://www.servillian.com
>
> bholbrook@servillian.com
>
> bholbrook@telus.blackberry.net
>
> Cell:       (250) 309 ó 7408
>
> Office: (250) 260 ó 4351 ext. 13
>
> *************************************
>
> For up to the minute news, support notifications and other pertinant information regarding your website or related
> services, you can use the following resources:
>
> Twitter | Facebook | Support Website
>

--
Jerry Sievers
Postgres DBA/Development Consulting
e: postgres.consulting@comcast.net
p: 305.321.1144

pgsql-admin by date:

Previous
From: Tom Lane
Date:
Subject: Re: PGDATA not accessible; please fix the directory permissions ($PGDATA should be world readable)
Next
From: Raghavendra
Date:
Subject: Re: Postgres process