Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Outer Joins are Evil?
> to avoid performing outer joins.
I guess - at least in data warehouse environment - the real question is not the use of outer or inner join BUT the use of surrogate or natural keys.
If you design your schema with surrogate keys the result of outer and inner joins are the same so you have no problems - you may choose the better (if there is really a difference). You will get no inconstant result and all tools deliver the same result.
Using natural keys, there are plenty of strategies how to save costs at the risk of facing some later disastrous scenarios (see Kimball for examples).
> Outer joins are slow
I agree with D. Tow the this is a myth. I see the rationale of this in the behaviour that outer join on the same data returns greater result set as an inner join, thus consume more resources.
> should be avoided at all costs.
If you have a choice between feature A (cost X) and B (cost Y) and X > Y, you may prefer B but not "at all cost". The cost of the switch should be less then X - Y (decreased by the cost of the migration and quality assurance).
Jaromir D.B. Nemec
I'm currently working on a datawarehouse project (~5 Tb) where the decision has been made to avoid performing outer joins.
The reasons given for this seem to be -
What they actually do is populate each table in the structure with three default rows with an SK of 0, 1 & 2. Any FK's which are missing, not applicable or invalid will point to one of these rows.
Now....my question is....what is so inherently evil about outer joins that we go to this extreme to avoid them?
AND...has anyone else seen something like this deployed in other places?
Thanks,
Steve.
Please note we reserve the right to monitor all e-mail communication through our internal and external networks.
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Tue Aug 31 2004 - 16:41:14 CDT
![]() |
![]() |