Re: Error when inserting millions of records

From: "Qingqing Zhou" <zhouqq(at)cs(dot)toronto(dot)edu>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Error when inserting millions of records
Date: 2006-01-13 18:51:13
Message-ID: dq8son$2f2p$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


"Rudolph" <rudolph(dot)froger(at)gmail(dot)com> wrote
> Me and a friend are testing some operations for a search application in
> PostgreSQL. In version 8.1 my friend tried to copy the result of a join
> into another table, about 45.000.000 (small) records. This is the
> result:
>
> testsearch=> insert into t_documentword2 (SELECT document_id,
> t_word2.id,
> frequency from t_documentword, t_word2 where t_documentword.word =
> t_word2.word);
> server closed the connection unexpectedly
> This probably means the server terminated abnormally
> before or while processing the request.
> The connection to the server was lost. Attempting reset: Failed.
>
> He got the same result in version 7.5.15.
>

Do we have a 7.5.15 version? You can get the right version using "SELECT
version();".

What's the structure of t_documentword2 and t_documentword? If you got core
dumps, it will be useful to print the backtrace.

Regards,
Qingqing

In response to

Browse pgsql-general by date

  From Date Subject
Next Message John Gray 2006-01-13 19:59:27 Re: PostgreSQL Top 10 Wishlist
Previous Message Rudolph 2006-01-13 18:42:26 Error when inserting millions of records