Re: bulk DELETE speed - Mailing list pgsql-admin

From Marie G. Tuite
Subject Re: bulk DELETE speed
Date
Msg-id IGELKLINGDMODABPOOFEEEGKECAA.marie.tuite@edisonaffiliates.com
Whole thread Raw
In response to bulk DELETE speed  ("Kuhn, Dylan K (4520500D)" <Dylan.Kuhn@navy.mil>)
List pgsql-admin
If you can delete all records, try truncating the table:
 
truncate table your_table;
 
This is more efficient and also has the affect of resetting the table.
-----Original Message-----
From: pgsql-admin-owner@postgresql.org [mailto:pgsql-admin-owner@postgresql.org]On Behalf Of Kuhn, Dylan K (4520500D)
Sent: Friday, May 16, 2003 12:15 PM
To: pgsql-admin@postgresql.org
Subject: [ADMIN] bulk DELETE speed


I'm trying to figure out why deletes are slow on a particular table. 

I have a few tables with millions of rows, and have noticed that deleting rows is many times slower on one of them.  It does have PL/PGSQL before and after delete triggers.  I've tried disabling the triggers in pg_trigger, dropping them, doing the deletes in transactions, with exclusive locks -- nothing seems to work.  Maybe it isn't the triggers at all, and I need to do some sort of analysis on my table to figure out why it is slow?

Does anyone have any other tricks for speeding up bulk deletes? 

Thanks,
Dylan Kuhn

pgsql-admin by date:

Previous
From: "Kuhn, Dylan K (4520500D)"
Date:
Subject: bulk DELETE speed
Next
From: "Kuhn, Dylan K (4520500D)"
Date:
Subject: Re: bulk DELETE speed