Re: How long should it take to insert 200,000 records?

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: How long should it take to insert 200,000 records?
Дата
Msg-id b42b73150702061106r7ed1d643k84e44f051dd68aaa@mail.gmail.com
обсуждение исходный текст
Ответ на Re: How long should it take to insert 200,000 records?  (Mark Lewis <mark.lewis@mir3.com>)
Ответы Re: How long should it take to insert 200,000 records?
Список pgsql-performance
On 2/6/07, Mark Lewis <mark.lewis@mir3.com> wrote:
> > actually, I get the stupid award also because RI check to unindexed
> > column is not possible :)  (this haunts deletes, not inserts).
>
> Sure it's possible:
>
> CREATE TABLE parent (col1 int4);
> -- insert many millions of rows into parent
> CREATE TABLE child  (col1 int4 REFERENCES parent(col1));
> -- insert many millions of rows into child, very very slowly.

the database will not allow you to create a RI link out unless the
parent table has a primary key/unique constraint, which the database
backs with an index....and you can't even trick it afterwards by
dropping the constraint.

it's the other direction, when you cascade forwards when you can have
a problem.  this is most common with a delete, but can also happen on
an update of a table's primary key with child tables referencing it.

merlin

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

Предыдущее
От: Bruno Wolff III
Дата:
Сообщение: Re: How long should it take to insert 200,000 records?
Следующее
От: Mark Lewis
Дата:
Сообщение: Re: How long should it take to insert 200,000 records?