Re: [GENERAL] Dump functions alone

2012-02-16 Thread Jan Otto
> Any help in getting function argument names is appreciated. Thank you take a look at pg_catalog.pg_get_function_arguments(oid) regards, jan -- Sent via pgsql-general mailing list (pgsql-general@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-gen

Re: [GENERAL] Dump functions alone

2012-02-15 Thread Rajan, Pavithra
audit(v_IncidentId,'Modified',v_Message); RETURN; END; $BODY$ LANGUAGE plpgsql VOLATILE COST 100; ALTER FUNCTION oms.om_change_i_division(integer, text, text) OWNER TO oru; From: Raghavendra [mailto:raghavendra@enterprisedb.com] Sent: Wednesday, February 15, 2012 1

Re: [GENERAL] Dump functions alone

2012-02-15 Thread Rajan, Pavithra
sql-general@postgresql.org Subject: Re: [GENERAL] Dump functions alone One more thing you can also get it from pg_get_functiondef() system function. --- Regards, Raghavendra EnterpriseDB Corporation Blog: http://raghavt.blogspot.com/ On Wed, Feb 15, 2012 at 9:32 PM, Raghavendra wrote

Re: [GENERAL] Dump functions alone

2012-02-15 Thread Raghavendra
One more thing you can also get it from pg_get_functiondef() system function. --- Regards, Raghavendra EnterpriseDB Corporation Blog: http://raghavt.blogspot.com/ On Wed, Feb 15, 2012 at 9:32 PM, Raghavendra < raghavendra@enterprisedb.com> wrote: > You have two options. > >- Use contri

Re: [GENERAL] Dump functions alone

2012-02-15 Thread Raghavendra
You have two options. - Use contrib module pg_extractor https://github.com/omniti-labs/pg_extractor - Use pg_proc catalog to get function definition --- Regards, Raghavendra EnterpriseDB Corporation Blog: http://raghavt.blogspot.com/ On Wed, Feb 15, 2012 at 6:59 PM, Rajan, Pavithra

[GENERAL] Dump functions alone

2012-02-15 Thread Rajan, Pavithra
Hello all- Is there a way to just dump functions in a schema in to a txt file/ sql file ? Thank you.

Re: [GENERAL] dump Functions

2006-05-04 Thread Jim C. Nasby
On Sat, Apr 29, 2006 at 12:00:15AM +0200, Dany De Bontridder wrote: > Hello, I would like to dump all my functions and only the functions from a > database, how can I do that ?? > > So far, I can only get it with > > pg_dump -s dossier1|awk '/CREATE FUNCTION/,/LANGUAGE/ { print $0;}' There's

[GENERAL] dump Functions

2006-04-28 Thread Dany De Bontridder
Hello, I would like to dump all my functions and only the functions from a database, how can I do that ?? So far, I can only get it with pg_dump -s dossier1|awk '/CREATE FUNCTION/,/LANGUAGE/ { print $0;}' Regards, D. ---(end of broadcast)--- T