Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Optimization of Partitioned Outer Joins
The ANSI/ISO standard has the following to say about partitioned outer
joins:
(if you are not interested, hit the delete key now :-)
================ quote from 7.7: <joined table> =========================
<partitioned join table> ::=
<table factor> PARTITION BY
<partitioned join column reference list>
<partitioned join column reference list> ::=
<left paren> <partitioned join column reference> [ { <comma> <partitioned join column reference> }... ] <right paren>
Syntax rule 7:
If a <partitioned join table> PJT is specified, then:
a) The <qualified join> or <natural join> shall specify an <outer join
type>.
b) Each <partitioned join column reference> shall uniquely reference a
column of the table referenced by
the <table primary> simply contained in PJT. Such a column is called a
join partitioning column.
c) If the first operand of the <qualified join> or <natural join> is a
<partitioned join table>, then the <outer
join type> shall be RIGHT or FULL.
d) If the second operand of the <qualified join> or <natural join> is a
<partitioned join table>, then the
<outer join type> shall be LEFT or FULL, and TRB shall not contain a
<lateral derived table> containing
an outer reference that references TRA.
General Rule4:
If RIGHT or FULL is specified or if LEFT is specified and the second operand
specifies <partitioned join
table>, then:
a) Let TVB be the result of evaluating TRB.
NOTE 138 - It follows from the Syntax Rules that TRB does not contain a
<lateral derived table>
containing an outer reference that references TRA. This ensures that it is possible to evaluate TRB in isolation. b) Case:
i) If the first operand specifies <partitioned join table>, then Case:
Conformance Rule 5:
Without Feature F403, "Partitioned join tables", conforming SQL language
shall not contain <partitioned
join table>.
Lex.
-----Original Message-----
From: oracle-l-bounce_at_freelists.org [mailto:oracle-l-bounce_at_freelists.org]
On Behalf Of Christian Antognini
Sent: Monday, January 03, 2005 11:17
To: jaromir nemec
Cc: oracle-l_at_freelists.org
Subject: RE: Optimization of Partitioned Outer Joins
Hi Jaromir
>> i.e. to me it seams that the partitioned outer join prevents the CBO
>> =
to
>use the join predicate as access predicate! > >exact and in my opinion correct. Otherwise you can get a different =result of
Mhmm... I don't know what you are trying to show with your query... but = at least the ON clause is wrong... I guess that the following two = queries show what do you want to show. (notice that I have no problem = with the following results!)
SQL> SELECT *
2 FROM sales s PARTITION BY (channel_id)
3 RIGHT OUTER JOIN ( 4 SELECT time_id 5 FROM times t 6 WHERE t.time_id =3D 1 7 ) t ON t.time_id =3D s.time_id8 WHERE channel_id =3D 9
CHANNEL_ID TIME_ID AMOUNT_SOLD TIME_ID ---------- ---------- ----------- ----------
9 1
SQL> SELECT *
2 FROM sales s PARTITION BY (channel_id)
3 RIGHT OUTER JOIN ( 4 SELECT time_id 5 FROM times t 6 WHERE t.time_id =3D 1 7 ) t ON t.time_id =3D s.time_id8 WHERE channel_id =3D 9
no rows selected
>My interpretation is, that the partitions are build first, followed by
>=
the
>join.
I agree, but I don't see why during the join the condition cannot be = used as access predicate.
>Note, that in my example the required channel_id =3D 9 doesn't exist in
>=
the
>constrained time (time_id =3D1) but is returned in the first query. The
>=
second
>query, that constraint the sales table on time_id =3D 1 return no data.
See my previous remark...
>It will be interesting to see the ANSI definition of partitioned outer
>=
join.
AFAIK it's not part to SQL 2003, therefore we have to wait some time.
>Another minor point is the where clause (WHERE channel_id =3D9). In my >opinion, if the channel_id is known (and only one), there is no need to >perform partitioned join.
This is a simplified query. In the original one the restriction was on = another column of the table CHANNELS, i.e. not on the PK.
Chris
-- http://www.freelists.org/webpage/oracle-l -- http://www.freelists.org/webpage/oracle-lReceived on Mon Jan 03 2005 - 10:05:24 CST
![]() |
![]() |