Re: [SQL] Beginner's headache of joins

From: Chris Bitmead <cbitmead(at)ozemail(dot)com(dot)au>
To: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Beginner's headache of joins
Date: 1999-07-01 02:13:35
Message-ID: 377ACECF.39DB85D1@ozemail.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Telling us the query you're doing might help.

webmaster wrote:
>
> Hi all,
> I'm trying to deal with joins the first time and it looks like I'm stupid
> enough to solve the problem without your help :)
>
> My main problem is when I'm performing SELECT on 3 tables - all the keys are
> indexed - Postgresql is working for so long time that I don't thing everything
> is ok. My last try ended with disk full of files like HJ999... at the database
> directory - so I know the postgresql is performing something called hash
> join... I don't know exactly if it is ok or not. IMHO my select job is not so
> complicated and tables are not so big to end with 300MB of temporary files (and
> it didn't finished at all), so something IS wrong...
>
> OK, I want to solve it myself... I was studying the docs so I know something
> more about it and I started experimenting with easier join of two tables. But
> I'm not sure what does mean following result of EXPLAIN SELECT:
>
> explain select catnum.catnum, kat.ident, kat.nazev where
> catnum.catnum=kat.ident;
>
> resulting as:
>
> HASH JOIN ...
> -> SEQ SCAN ON catnum ...
> -> HASH ...
> -> SEQ SCAN ON kat...
>
> So, I can see that it's performing two scans without using indexes. Why? both
> catnum.catnum and kat.ident are indexed (default index type)... I've expected
> one index scan, but there is not. What's wrong? I can't find the description of
> such problem at docs... I've tried VACUUMing both the tables but result
> is the same. My postgresql is 6.4.2. Maybe i'm using wrong index type? Maybe
> it's ok and I'm not understanding the whole join thing?
>
> Anyway thanks for any comments and sorry for my school English...
>
> --
> Michal Samek, Tony distribuce s.r.o.
> webmaster(at)tony(dot)cz (++420659/321350)
> ICQ: 38

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Bruce Momjian 1999-07-01 03:26:12 Re: [SQL] begin/end/abort work for sequences?
Previous Message Peter Eisentraut 1999-06-30 18:07:26 Escaping w/i regular expressions