Bad performance on update from a join

From: Jean-Luc Lachance <jllachan(at)nsd(dot)ca>
To: pgsql-sql(at)postgresql(dot)org
Subject: Bad performance on update from a join
Date: 2002-05-08 20:40:46
Message-ID: 3CD98D4E.3553836D@nsd.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi all,
Hi Tom,

I was exploring ways to improve the time required to update a large
table from the join of two others as in:
UPDATE a FROM b, c;

I found that whatever index I create, compound or not, PG insist on
performing the cartesian product first.
Now, if "b" and "c" are relatively small, that make sense, but when the
cartesian product of "b" and "c" is and order of magnitude larger than
"a" it makes no sense at all.

Shouldn't the number of rows in "b" and "c" be reduced to the matching
the criterias on "a" first?
If "b" is meant to be a many to one relation to "c", shouldn't "a" be
joined to "b" first?

Is there a way I can force the "a" join "b" first?

I also tried to do it in a PLPGSQL FOR LOOP, but because the script is
processed as a transaction, I do not get much better performance.

It would sure be nice to be able to commit the change on a row per row
basis.

THX

jll

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Edipo Elder Fernandes de Melo 2002-05-08 20:48:34 Migrating from 7.1 to 7.2
Previous Message Philip Hallstrom 2002-05-08 20:31:39 Re: CURSOR/FETCH vs LIMIT/OFFSET