Re: continuous copy/update one table to another

Поиск
Список
Период
Сортировка
От David W Noon
Тема Re: continuous copy/update one table to another
Дата
Msg-id 20100228223157.26c0d09a@dwnoon.ntlworld.com
обсуждение исходный текст
Ответ на continuous copy/update one table to another  (Terry <td3201@gmail.com>)
Список pgsql-general
On Sun, 28 Feb 2010 15:56:41 -0600, Terry wrote about [GENERAL]
continuous copy/update one table to another:

>Hello,
>
>I am looking for a way to copy all the data from one table to another
>on a regular basis, every 5 minutes let's say.
>
>INSERT INTO table2 SELECT * FROM table1;
>
>The above will copy all the data as is and insert it into the other
>table.  What happens if I rerun it again?  Will it just append table1
>again into table2?

You will get key duplication errors.

>How can I have it only insert rows that are different?

Use an EXISTS predicate:

INSERT INTO table2 SELECT * FROM table1 AS t1
  WHERE NOT EXISTS (SELECT * FROM table2 WHERE table2.key = t1.key);

You will need to compare all fields in the key if it is a multi-column
key.
--
Regards,

Dave  [RLU #314465]
=======================================================================
david.w.noon@ntlworld.com (David W Noon)
=======================================================================

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

Предыдущее
От: John R Pierce
Дата:
Сообщение: Re: continuous copy/update one table to another
Следующее
От: Szymon Guz
Дата:
Сообщение: Re: continuous copy/update one table to another