Re: pg_dump -n schema -Fc has a DROP DATABASE command... confused

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: pg_dump -n schema -Fc has a DROP DATABASE command... confused
Дата
Msg-id 1123450.1642741378@sss.pgh.pa.us
обсуждение исходный текст
Ответ на pg_dump -n schema -Fc has a DROP DATABASE command... confused  (Wells Oliver <wells.oliver@gmail.com>)
Список pgsql-admin
Wells Oliver <wells.oliver@gmail.com> writes:
> I did a few pg_dumps of different schemas using:
> pg_dump -h host dbname -n schema -Fc > schema.dump
> Opening it in VIM brings up a binary file (compressed, sure) but it looks
> like this:
> Which contains the line "DROP DATABASE". Which is weird-- it does not drop
> the database, I mean, I restored from the same file. Why is this in there?

pg_dump -Fc produces an archive file that pg_restore can use to
do whatever you can ask pg_restore to do.  One of those things
is the --clean switch, which says to drop every database object
before restoring.  So among the strings in the archive file you
will find DROP commands for all the dumped objects.  Those are
not issued by default, though.

(The other DROP commands might be obscured by compression.
Try --compress=0 to get a clearer view of what's in there.)

            regards, tom lane



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

Предыдущее
От: "David G. Johnston"
Дата:
Сообщение: Re: pg_dump -n schema -Fc has a DROP DATABASE command... confused
Следующее
От: Дмитрий Иванов
Дата:
Сообщение: Re: Password authorization