Re: backup to partitioned table

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: backup to partitioned table
Дата
Msg-id 1349430.1668615305@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: backup to partitioned table  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-admin
"David G. Johnston" <david.g.johnston@gmail.com> writes:
> On Wed, Nov 16, 2022 at 8:56 AM Erik Serrano <eserranos@gmail.com> wrote:
>> I have a partitioned table in postgresql version 9,5 to which I select and
>> it returns data perfectly, but when I want to make a backup of the table,
>> it only saves the structure without records.

You realize of course that 9.5 is two years past EOL.

>> When consulting the administrator, he informs me that it is a partitioned
>> table and that it is always zero, but the data is in its "daughter" tables
>> and that the select that it returns is the information that is housed in
>> all its daughter tables.
>> Now, given this, I wanted to know if there is any way to make a backup of
>> the table that throws all the data from its child tables into a flat file.

> I presume you are doing something with pg_dump...don't.

Yeah, pg_dump is chartered to reproduce the original situation, so it
won't help here.

Also, 9.5 didn't have what we would now call partitioned tables.
Presumably this is actually an inheritance tree, which complicates
matters because there's no guarantee that the child tables even have
the same column set as the parent.

> Use a "COPY" command (or psql \copy) to produce the CSV file instead.

You'll need to use "COPY (SELECT * FROM parent_table) TO wherever";
just plain "COPY parent_table" won't do it.

            regards, tom lane



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

Предыдущее
От: Ron
Дата:
Сообщение: Re: backup to partitioned table
Следующее
От: Erik Serrano
Дата:
Сообщение: Re: backup to partitioned table