Re: Long-running DELETE

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: Jeff Boes <jboes(at)nexcerpt(dot)com>
Cc: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Long-running DELETE
Date: 2002-01-16 05:13:49
Message-ID: 20020115211207.I39844-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql


On 15 Jan 2002, Jeff Boes wrote:

> Okay, this is really starting to fry me:
>
> I'm trying to delete 1000 rows from a table which is referenced by
> several different other tables as a foreign key. I've turned on
> debug_print_query to help track this down. When I do deletes from
> some tables, I can delete hundreds of rows per second. When I delete
> from the main table, it's about 1 row per second. I've turned off
> every trigger in the database:
>
> update pg_triggers set tgenabled=false;

I don't think tgenabled works. You'll probably need to set reltriggers to
0 on the pg_class row for the table (and then reset it to the correct
value afterwards).

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2002-01-16 05:42:05 Re: Long-running DELETE
Previous Message Frank Bax 2002-01-15 19:22:50 Re: Long-running DELETE...WHERE...