Re: function accessing other db

From: "Marcus Andree S(dot) Magalhaes" <marcus(dot)magalhaes(at)vlinfo(dot)com(dot)br>
To: <bruno(at)wolff(dot)to>
Cc: <pgsql-novice(at)postgresql(dot)org>
Subject: Re: function accessing other db
Date: 2004-02-12 15:41:21
Message-ID: 12780.200.161.200.85.1076600481.squirrel@webmail.webnow.com.br
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice


This would work if both tables (tablea and tableb) resides on the
same database. What to do if, say tablea lives on database 'db1' and
tableb resides on another database, 'db2' ?

Thanks for your message.

> On Thu, Feb 12, 2004 at 11:43:11 -0200,
> "Marcus Andree S. Magalhaes" <marcus(dot)magalhaes(at)vlinfo(dot)com(dot)br> wrote:
>>
>> Hello everyone,
>>
>> We have to copy some data from one table to another table in other
>> database.
>>
>> Is there any way to do this from inside a custom plpgsql function,
>> with no external applications, interfaces or storage?
>
> You can do something like:
>
> INSERT INTO tablea (col1, col2, col3) SELECT col1, col2, col3 FROM
> tableb;

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Bruno Wolff III 2004-02-12 15:52:32 Re: function accessing other db
Previous Message Bruno Wolff III 2004-02-12 15:36:02 Re: function accessing other db