Re: Slow delete

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Doug Hall <doughalldev(at)gmail(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Slow delete
Date: 2005-07-13 17:46:08
Message-ID: 20073.1121276768@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Doug Hall <doughalldev(at)gmail(dot)com> writes:
> delete from citizen where id not in (select citizenid from
> citizen_stage);

> The explain select tells me that there is a sequential select of
> citizen_stage records. (??) There are 75009 citizen records and 14778
> records, and it's taking more than half an hour. How can I speed this
> up?

How old is your Postgres? I'd expect 7.4 and up to do this with a hashed
IN, which'd be reasonably fast. If the EXPLAIN output doesn't say
anything about a "hashed subplan", then either you've got an old version
or there's some sort of estimation problem.

If it is a hashed IN and it's still slow, I'd wonder about unindexed
foreign key references to the citizen table.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2005-07-13 18:10:12 Re: index bloat
Previous Message Tom Lane 2005-07-13 17:41:44 Re: Nulls in timestamps