Out of memory error on select - Mailing list pgsql-general

From Werner Bohl
Subject Out of memory error on select
Date
Msg-id 1112735069.1592.6.camel@sirio
Whole thread Raw
Responses Re: Out of memory error on select  (Scott Marlowe <smarlowe@g2switchworks.com>)
Re: Out of memory error on select  (Greg Stark <gsstark@mit.edu>)
List pgsql-general
I have a fairly large table (21M) records. One field of type varchar(16)
has some duplicate values, which I'm trying to identify.
Executing select dup_field from dup_table group by dup_field having
count(*) > 1 errs with Out of Memory error. Server has 4GB memory, the
backend-process errs after 3.7GB consumed. Is there any work-around that
I may use to get this duplicates?

Explain output:
"HashAggregate  (cost=881509.02..881510.02 rows=200 width=20)"
"  Filter: (count(*) > 1)"
"  ->  Seq Scan on lssi_base  (cost=0.00..872950.68 rows=1711668
width=20)"

Why is the hash eating so much memory? A fast calc of the memory
occupied by this data is less than 512MB.


TIA,


--
Werner Bohl <WernerBohl@infutor.com>
IDS de Costa Rica S.A.


pgsql-general by date:

Previous
From: Master of the beasts
Date:
Subject: Catching DDL events (or equivalent functionality)
Next
From: Scott Marlowe
Date:
Subject: Re: Out of memory error on select