Re: Should Oracle outperform PostgreSQL on a complex - Mailing list pgsql-performance

From Simon Riggs
Subject Re: Should Oracle outperform PostgreSQL on a complex
Date
Msg-id 1134810953.2964.117.camel@localhost.localdomain
Whole thread Raw
In response to Re: Should Oracle outperform PostgreSQL on a complex  (Bruce Momjian <pgman@candle.pha.pa.us>)
Responses Re: Should Oracle outperform PostgreSQL on a complex  (Bruce Momjian <pgman@candle.pha.pa.us>)
Re: Should Oracle outperform PostgreSQL on a complex  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-performance
On Fri, 2005-12-16 at 23:28 -0500, Bruce Momjian wrote:
> How are star joins different from what we do now?

Various ways of doing them, but all use plans that you wouldn't have
come up with via normal join planning.

Methods:
1. join all N small tables together in a cartesian product, then join to
main Large table once (rather than N times)
2. transform joins into subselects, then return subselect rows via an
index bitmap. Joins are performed via a bitmap addition process.

You can fake (1) yourself with a temporary table, and the basics for (2)
are now in place also.

The characteristics of these joins make them suitable for large Data
Warehouses with Fact-Dimension style designs.

Many RDBMS have this, but we need to be careful of patent claims. I'm
sure there's a way through that, but I'm not looking for it yet. Anybody
else wishing to assist with a detailed analysis would be much
appreciated.

Best Regards, Simon Riggs


pgsql-performance by date:

Previous
From: David Lang
Date:
Subject: Re: Overriding the optimizer
Next
From: Jaime Casanova
Date:
Subject: Re: Overriding the optimizer