Re: [HACKERS] plpgsql problem..

From: Sevo Stille <sevo(at)ip23(dot)net>
To: Mitch Vincent <mitch(at)venux(dot)net>
Cc: hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] plpgsql problem..
Date: 2000-02-01 16:21:12
Message-ID: 389707F8.175B362F@ip23.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Mitch Vincent wrote:
>
> This might sound like an ignorant question but how does one dump the
> function catalog?

The functions are in pg_proc. So generally, it would be "select * from
pg_proc". For the given problem, "select proname,probin from pg_proc;"
would be sufficient. Dump to a importable set of SQL statements, as in
pg_dump, can't be done - restoring a system table would hose the id
references, so exporting to a restorable format is of no use.

Sevo

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Mitch Vincent 2000-02-01 16:29:54 Re: [HACKERS] plpgsql problem..
Previous Message Tom Lane 2000-02-01 16:08:55 Re: [HACKERS] plpgsql problem..