| From: | Ricardo Valença de Assis <valenca(at)campusvirtual(dot)br> |
|---|---|
| To: | "Jim C(dot) Nasby" <decibel(at)decibel(dot)org> |
| Cc: | "Bruno Wolff III" <bruno(at)wolff(dot)to>, <pgsql-admin(at)postgresql(dot)org> |
| Subject: | Re: delete to slow |
| Date: | 2005-04-06 17:59:18 |
| Message-ID: | 010101c53ad2$5a4d84a0$1b00280a@ugf.br |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-admin |
DATABASE=# explain delete from usuario where
usua_cd_usuario=backup.usua_cd_usuario;
QUERY PLAN
--------------------------------------------------------------------
Hash Join (cost=5.71..644.15 rows=298 width=6)
Hash Cond: ("outer".usua_cd_usuario = "inner".usua_cd_usuario)
-> Seq Scan on usuario (cost=0.00..516.64 rows=23764 width=10)
-> Hash (cost=4.97..4.97 rows=297 width=4)
-> Seq Scan on backup (cost=0.00..4.97 rows=297 width=4)
(5 rows)
DATABASE=# explain delete from usuario where usua_cd_usuario in (select
usua_cd_usuario from backup);
QUERY PLAN
--------------------------------------------------------------------
Hash IN Join (cost=5.71..644.15 rows=298 width=6)
Hash Cond: ("outer".usua_cd_usuario = "inner".usua_cd_usuario)
-> Seq Scan on usuario (cost=0.00..516.64 rows=23764 width=10)
-> Hash (cost=4.97..4.97 rows=297 width=4)
-> Seq Scan on backup (cost=0.00..4.97 rows=297 width=4)
(5 rows)
----- Original Message -----
From: "Jim C. Nasby" <decibel(at)decibel(dot)org>
To: "Ricardo Valen?a de Assis" <valenca(at)campusvirtual(dot)br>
Cc: "Bruno Wolff III" <bruno(at)wolff(dot)to>; <pgsql-admin(at)postgresql(dot)org>
Sent: Wednesday, April 06, 2005 2:56 PM
Subject: Re: [ADMIN] delete to slow
> On Wed, Apr 06, 2005 at 02:32:55PM -0300, Ricardo Valen?a de Assis wrote:
> > I?ve tried... It takes the same time. I used explain and I saw it...
Exactly
> > the same time.
>
> And what does explain show? Are statistics up to date?
> --
> Jim C. Nasby, Database Consultant decibel(at)decibel(dot)org
> Give your computer some brain candy! www.distributed.net Team #1828
>
> Windows: "Where do you want to go today?"
> Linux: "Where do you want to go tomorrow?"
> FreeBSD: "Are you guys coming, or what?"
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Dextra - Gustavo Bartz Guedes | 2005-04-06 17:59:36 | Opened Cursors |
| Previous Message | Tom Lane | 2005-04-06 17:57:50 | Re: delete to slow |