Re: PostgreSQL Write Performance

Поиск
Список
Период
Сортировка
От Stephen Cook
Тема Re: PostgreSQL Write Performance
Дата
Msg-id 4B443299.5010909@gmail.com
обсуждение исходный текст
Ответ на Re: PostgreSQL Write Performance  (Tim Uckun <timuckun@gmail.com>)
Список pgsql-general
Tim Uckun wrote:
>
> Is there a command like COPY which will insert the data but skip all
> triggers and optionally integrity checks.
>

I'm curious if it would be worth COPYing the data into dummy tables with
no constraints, and then using INSERT INTO ... SELECT statements to feed
from those tables into the real ones, which would check constraints and
such but as a set.

I've done it that way in SQL Server before, but I'm much less
experienced with PostgreSQL.


-- Stephen Cook

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

Предыдущее
От: Yan Cheng Cheok
Дата:
Сообщение: Re: PostgreSQL Write Performance
Следующее
От: "Dann Corbit"
Дата:
Сообщение: Re: PostgreSQL Write Performance