Re: PG 9 adminstrations

Поиск
Список
Период
Сортировка
От Derrick Rice
Тема Re: PG 9 adminstrations
Дата
Msg-id CANvs22EqZABNVKwi-YD-eiBjrC9dwXB5CrkcbEcZFPB+Pqb5uw@mail.gmail.com
обсуждение исходный текст
Ответ на PG 9 adminstrations  (Hany ABOU-GHOURY <hghoury@gmail.com>)
Ответы Re: PG 9 adminstrations
Список pgsql-performance
You don't need "-t history" on the psql part.  It doesn't do what you think it does, and it's reading the next part ("history") as the database name.

try:

pg_dump -h <hostname1> -U postgres -t history DATABASENAME | psql -h hostname2 -U postgres DATABASENAME > db.sql

Derrick

On Tue, Sep 20, 2011 at 11:57 PM, Hany ABOU-GHOURY <hghoury@gmail.com> wrote:
Hi all,

I am trying to update / refresh one table (history) only from prod. database to my test environment database
my query as follows:

pg_dump -h <hostname1> -U postgres -t history DATABASENAME | psql -h hostname2 -U postgres -t history DATABASENAME > db.sql

but I am getting the following error

psql: FATAL:  database "history" does not exist


Can you help please?

what would be the script if I want more than one table (3 tables to refresh)

Kind regards

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

Предыдущее
От: Hany ABOU-GHOURY
Дата:
Сообщение: PG 9 adminstrations
Следующее
От: Hany ABOU-GHOURY
Дата:
Сообщение: Re: PG 9 adminstrations