Enix Empreendimentos e Construções Ltda. kirjutas K, 12.03.2003 kell
22:47:
> Hi everybody.
>
> I am a newbie to Postgresql, trying to migrate an application from MSAccess.
>
> I am quite dissapointed with the problems I am facing with some queries
> containing multiple joins.
Postgres currently does *not* optimize join order for explicit joins
(this is currently left as a cludge for users to hand-optimize query
plans).
To get the benefits form optimiser you have to rewrite
FROM TA JOIN TB ON TA.CB=TB.CB
to
FROM A,B
WHERE TA.CB=TB.CB
> I confess it has been hard for someone that is
> not a DBA to figure out which are the problems. Just to ilustrate, I have
> some queries that provide a reasonable query plan (at least from my point of
> view), but that return no result: keep running on and on.
Could you try to explain it in other words (or give an example). I am
not native english speaker and I can read your text in at least 5
different ways ;(
> Is the performance of the mentioned Postgresql version much slower than the
> 7.3.1?
It can be slower. It may also be a little faster in some very specific
cases ;)
--------------
Hannu