Re: function accessing other db

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: function accessing other db
Дата
Msg-id 20040212153602.GB4001@wolff.to
обсуждение исходный текст
Ответ на function accessing other db  ("Marcus Andree S. Magalhaes" <marcus.magalhaes@vlinfo.com.br>)
Ответы Re: function accessing other db  ("Marcus Andree S. Magalhaes" <marcus.magalhaes@vlinfo.com.br>)
Список pgsql-novice
On Thu, Feb 12, 2004 at 11:43:11 -0200,
  "Marcus Andree S. Magalhaes" <marcus.magalhaes@vlinfo.com.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;

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

Предыдущее
От: "Marcus Andree S. Magalhaes"
Дата:
Сообщение: function accessing other db
Следующее
От: "Marcus Andree S. Magalhaes"
Дата:
Сообщение: Re: function accessing other db