Re: how to create dump of selected rows from a table

Поиск
Список
Период
Сортировка
От Adrian Klaver
Тема Re: how to create dump of selected rows from a table
Дата
Msg-id 56742367.6020003@aklaver.com
обсуждение исходный текст
Ответ на how to create dump of selected rows from a table  (anj patnaik <patna73@gmail.com>)
Ответы Re: how to create dump of selected rows from a table  (Melvin Davidson <melvin6925@gmail.com>)
Список pgsql-general
On 12/17/2015 09:28 AM, anj patnaik wrote:
> Currently, I am running pg_dump on an entire table of a database by doing:
>
>   PGPASSWORD=$PGPASSWORDB /opt/data/PostgreSQL/9.4/bin/pg_dump -t
> RECORDER -Fc $i -U pguser -Z0 | xz -9 > "$backup_dir/$i-$timeslot-database"
>
> However, this table has a lot of rows.
>
> Is there a way I could do pg_dump on a subset of rows that match a
> criteria say via a sql statement?

Yes it is called COPY:):

http://www.postgresql.org/docs/9.4/interactive/sql-copy.html

or its psql equivalent \copy:

http://www.postgresql.org/docs/9.4/interactive/app-psql.html

>
> Does anyone have any snippets on how to do that?
>
> Thank you


--
Adrian Klaver
adrian.klaver@aklaver.com


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

Предыдущее
От: Stephen Frost
Дата:
Сообщение: Re: Check old and new tuple in row-level policy?
Следующее
От: Melvin Davidson
Дата:
Сообщение: Re: how to create dump of selected rows from a table