Re: drop view and recreate - for sync

Поиск
Список
Период
Сортировка
От Vick Khera
Тема Re: drop view and recreate - for sync
Дата
Msg-id 2968dfd60910260720t13156e9ch6d8a875b68e7086a@mail.gmail.com
обсуждение исходный текст
Ответ на drop view and recreate - for sync  (Sydney Puente <sydneypuente@yahoo.com>)
Ответы Re: drop view and recreate - for sync
Список pgsql-general
On Fri, Oct 23, 2009 at 6:44 PM, Sydney Puente <sydneypuente@yahoo.com> wrote:
> Ah I see what you mean - thanks very much that is v helpful!
> Yes the copy will be read-only.
> Will have 3 tables of data, being read (readonly) and in the background
> Will have 3 shadow tables populated from an unreliable db over an unreliable
> network.
> not quite sure how I can "insert all the rows" in sql.
> have postgres 8.03 BTW.
>

If your network is unreliable, then perhaps the thing to do is have
your program first fetch all the new data over that network into tab
delimited files, one per table.  Then to insert all your data, just
use the "COPY" command in postgres to read it all as one hunk of data.
 This will be your fastest, most reliable way of loading the data in
minimal time.  Your only other option is to issue 100,000 "INSERT"
statements, which will take much longer.

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

Предыдущее
От: Raymond O'Donnell
Дата:
Сообщение: Re: [ANNOUNCE] [pgeu-general] PGDay.EU 2009 - approaching fast!
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: cursor MOVE vs OFFSET in SELECT