Re: table dump function

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: table dump function
Дата
Msg-id 5138BAB9.2010401@gmail.com
обсуждение исходный текст
Ответ на table dump function  ("Little, Douglas" <DOUGLAS.LITTLE@orbitz.com>)
Ответы Re: table dump function
Список pgsql-general
On 03/07/2013 07:58 AM, Little, Douglas wrote:
> I need a pl/pgsql function that will dump a table ddl  so I can export
> the definition to a file  before I drop the object.
>
> the psql \d command won’t work, since it doesn’t dump the table ddl, it
> just lists the table’s attributes and indexes.
>
> I’ve got the function mostly working,  but need help translating the ACL
> list into the grant commands.
>
> Are there any standard PG functions that would be useful  for creating
> the grants?


pg_dump -U some_user -t some_table -s -f some_table.sql some_database

http://www.postgresql.org/docs/9.2/interactive/app-pgdump.html
>
> Thanks in advance.
>
> *Doug Little*



--
Adrian Klaver
adrian.klaver@gmail.com


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

Предыдущее
От: "Little, Douglas"
Дата:
Сообщение: table dump function
Следующее
От: "Little, Douglas"
Дата:
Сообщение: Re: FW: statement failure