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

From Jasen Betts
Subject Re: Copying data from one table of one database to other table f other database
Date
Msg-id gt6uu8$lr4$1@reversiblemaps.ath.cx
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
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


pgsql-novice by date:

Previous
From: David Gardner
Date:
Subject: Re: Question on collapsing a sparse matrix
Next
From: "Preetam Palwe"
Date:
Subject: Re: Re: Copying data from one table of one database to other table f other database