Re: getting around 'out of memory' errors - Mailing list pgsql-general

From Rajarshi Guha
Subject Re: getting around 'out of memory' errors
Date
Msg-id 1156442376.7455.75.camel@localhost
Whole thread Raw
In response to Re: getting around 'out of memory' errors  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: getting around 'out of memory' errors  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-general
On Thu, 2006-08-24 at 10:50 -0400, Tom Lane wrote:
> Rajarshi Guha <rguha@indiana.edu> writes:
> > I have a table, A with 15 fields, out of which I am interested in 2
> > fields, a and b. The table has 8,000,000 rows
>
> > I have another table, B, which has 3 fields a, c, and d. The field a
> > references field a in table A. Table B is empty at this point.
>
> > I tried to do an insert using the following command:
> > insert into B (a,c,d) select a, f1(b), f2(b) from A;
>
> I think you are getting burnt by the list of pending trigger actions
> to check the foreign-key references in B.  Might be easiest to drop the
> foreign key constraint, fill table B, re-add the constraint.  I forget
> how smart 7.4 is about adding FK constraints exactly, but it shouldn't
> run out of memory anyway.

Thanks for the pointer. I've dropped the constraint and am now running
the INSERT.

However when I look at the output of top, I'm seeing that the %MEM value
is continuously increasing and I'm worried that I'm going to hit the
same problem in a few hours.

One thing I did not mention previously is that table A has some
constraints on some fields (notably field b is specified to be NOT
NULL).

My understanding is that these constraints would not matter since I am
simply performing a SELECT - is this a correct assumption? Or should I
temporarily drop those constraints as well?

Thanks,

-------------------------------------------------------------------
Rajarshi Guha <rguha@indiana.edu>
GPG Fingerprint: 0CCA 8EE2 2EEB 25E2 AB04 06F7 1BB9 E634 9B87 56EE
-------------------------------------------------------------------
Q: What's yellow, linear, normed and complete?
A: A Bananach space.



pgsql-general by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: Large database design advice
Next
From: "Karen Hill"
Date:
Subject: SQL:2003 Window Functions for postgresql 8.3?