Re: Re: Copying data from one table of one database to other table f other database - Mailing list pgsql-novice

From Preetam Palwe
Subject Re: Re: Copying data from one table of one database to other table f other database
Date
Msg-id D2885A8132EB554B854E9E017ED9FEAC144317@exbm.aftekpune.com
Whole thread Raw
In response to Copying data from one table of one database to other table f other database  ("Preetam Palwe" <preetamp@aftek.com>)
List pgsql-novice
Thanks folks!
Following command worked for me


psql -h x.x.x.x -U postgres -d securez -c " copy  alerts to stdout "  |
psql -h x.x.x.x -U postgres -d p -c " copy alerts from stdin "

but
psql -h x.x.x.x -U postgres -d securez -c " copy (select * from alerts)
to stdout "  | psql -h x.x.x.x -U postgres -d p -c " copy alerts from
stdin "

is giving me syntax error as

ERROR:  syntax error at or near "("
LINE 1:  copy (select * from alerts) to stdout

Any idea ?



-----Original Message-----
From: pgsql-novice-owner@postgresql.org
[mailto:pgsql-novice-owner@postgresql.org] On Behalf Of Jasen Betts
Sent: Tuesday, April 28, 2009 6:35 PM
To: pgsql-novice@postgresql.org
Subject: [NOVICE] Re: Copying data from one table of one database to
other table f other database

On 2009-04-27, Preetam Palwe <preetamp@aftek.com> wrote:
> This is a multi-part message in MIME format.

> Hello all
>
>                 I want to copy the data from one table to other table.
> These tables reside in two different databases.
>
> I am thinking of using following query=20
>
>
> insert into table2 (select * from table1)
>
>
> but the problem is how can I specify the database name?

you can't



you can do this however:

 psql -c " copy (select * from table1) to stdout " database1 | psql -c "
copy table2 from stdin " database2


--
Sent via pgsql-novice mailing list (pgsql-novice@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-novice


pgsql-novice by date:

Previous
From: Jasen Betts
Date:
Subject: Re: Copying data from one table of one database to other table f other database
Next
From: Neil Saunders
Date:
Subject: Query appears not to recognise index (enable_seqscan=off)