Re: Scripting function definitions as SQL?

Поиск
Список
Период
Сортировка
От Reece Hart
Тема Re: Scripting function definitions as SQL?
Дата
Msg-id 1210570071.16647.61.camel@snafu
обсуждение исходный текст
Ответ на Scripting function definitions as SQL?  ("Postgres User" <postgres.developer@gmail.com>)
Ответы Re: Scripting function definitions as SQL?
Список pgsql-general
On Sun, 2008-05-11 at 06:12 -0700, Postgres User wrote:
> Has anyone written a function that scripts out all the functions in a
> database as full SQL statements (Create Function.....)

You could pg_dump the schema in the "custom" format (-Fc), then call
pg_restore with -l to get the TOC, grep the TOC for functions, and feed
that back into pg_restore with -L. It sounds like a lot, but it's pretty
easy in practice, like so:

$ sudo -u postgres pg_dump -Fc -s mydb >mydb.pgdfc
$ pg_restore -l mydb.pgdfc >mydb.toc
$ grep -E '^[0-9]+; [0-9]+ [0-9]+ FUNCTION' mydb.toc >mydb-fx.toc
$ pg_restore -L mydb-fx.toc mydb.pgdfc

The output of pg_restore is sql.

This technique is extremely useful for other kinds of schema elements as
well.

-Reece

--
Reece Hart, http://harts.net/reece/, GPG:0x25EC91A0


В списке pgsql-general по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Making sure \timing is on
Следующее
От: "Gurjeet Singh"
Дата:
Сообщение: Re: Scripting function definitions as SQL?