Re: Query running slower than same on Oracle

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Query running slower than same on Oracle
Дата
Msg-id 18325.1056577845@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Query running slower than same on Oracle  ("Sailer, Denis (YBUSA-CDR)" <Denis.Sailer@Yellowbook.com>)
Список pgsql-performance
"Sailer, Denis (YBUSA-CDR)" <Denis.Sailer@Yellowbook.com> writes:
> We are evaluating PostgreSQL for a typical data warehouse application.  I
> have 3 tables below that are part of a Star schema design.  The query listed
> below runs in 16 seconds on Oracle 9.2 and 3+ minutes on PostgreSQL 7.3.3
> Here are the details.

The majority of the runtime seems to be going into the sort step.  There
is not much to be done about this in 7.3, but 7.4 should use a hashed
aggregation approach for this query, which'd eliminate the sort step and
hopefully reduce the time a great deal.  Since you're only doing
evaluation at this point, it might be worth your while to try out CVS
tip ...

            regards, tom lane

В списке pgsql-performance по дате отправления:

Предыдущее
От: "Sailer, Denis (YBUSA-CDR)"
Дата:
Сообщение: Query running slower than same on Oracle
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Query running slower than same on Oracle