Re: Should Oracle outperform PostgreSQL on a complex

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема Re: Should Oracle outperform PostgreSQL on a complex
Дата
Msg-id 1134810953.2964.117.camel@localhost.localdomain
обсуждение исходный текст
Ответ на Re: Should Oracle outperform PostgreSQL on a complex  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: Should Oracle outperform PostgreSQL on a complex
Re: Should Oracle outperform PostgreSQL on a complex
Список 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 по дате отправления:

Предыдущее
От: David Lang
Дата:
Сообщение: Re: Overriding the optimizer
Следующее
От: Jaime Casanova
Дата:
Сообщение: Re: Overriding the optimizer