Re: Export/import issue/question

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Export/import issue/question
Дата
Msg-id 7516.1182273130@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Export/import issue/question  (Karl Wright <kwright@metacarta.com>)
Ответы Re: Export/import issue/question
Список pgsql-admin
Karl Wright <kwright@metacarta.com> writes:
> and then I installed 8.1, and attempted the following:
> pg_restore --file dbsnapshot --format=t --table=ingeststatus -a
> But, I get the following error:
> pg_restore: [tar archiver] could not find header for file toc.dat in tar
> archive

Oh, I'm overthinking the problem.  You left out some details here,
right?  Like it sat and did nothing until you hit control-D?

The above command is wrong because --file is an *output* switch for
pg_restore --- it would have tried to read a tar archive from stdin,
and the "could not find header" complaint is what you get when it hits
immediate EOF and the tar format has been forced on the command line.
(You would have gotten a more recognizable complaint without --format=t,
which is redundant anyway.)  Fortunately, it doesn't seem to try to
write the output file right away, so the dumpfile didn't get trashed.

Correct usage would be something like

pg_restore --table=ingeststatus -a dbsnapshot >restore.sql

or add -d etc switches to issue SQL directly to the target database.

            regards, tom lane

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

Предыдущее
От: Karl Wright
Дата:
Сообщение: Re: Export/import issue/question
Следующее
От: "Kevin Grittner"
Дата:
Сообщение: Re: archive_command does not execute