Thread: delete to slow
View Single Post

   
  #8 (permalink)  
Old 04-10-2008, 12:40 AM
Jim C. Nasby
 
Posts: n/a
Default Re: delete to slow

On Wed, Apr 06, 2005 at 02:59:18PM -0300, Ricardo Valen?a de Assis wrote:
> 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)


Well, neither of those should take very long at all. What's EXPLAIN
ANALYZE show?
--
Jim C. Nasby, Database Consultant decibel@decibel.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?"

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to majordomo@postgresql.org)

Reply With Quote