Re: Long-running DELETE - Mailing list pgsql-sql

From Stephan Szabo
Subject Re: Long-running DELETE
Date
Msg-id 20020115211207.I39844-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Long-running DELETE  (jboes@nexcerpt.com (Jeff Boes))
Responses Re: Long-running DELETE
List 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).




pgsql-sql by date:

Previous
From: jboes@nexcerpt.com (Jeff Boes)
Date:
Subject: Long-running DELETE
Next
From: Tom Lane
Date:
Subject: Re: Long-running DELETE