Re: Select performance vs. mssql

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема Re: Select performance vs. mssql
Дата
Msg-id 4292C73C.60006@familyhealth.com.au
обсуждение исходный текст
Ответ на Select performance vs. mssql  (mark durrant <markd89@yahoo.com>)
Список pgsql-performance
> select count(*) from mtable where day='Mon'
>
> Results:
>
> 1. P3 600 512MB RAM MSSQL. It takes about 4-5 secs to
> run. If I run a few queries and everything is cached,
> it is sometimes  just 1 second.
>
> 2. Athlon 1.3 Ghz 1GB RAM. PostgreSQL takes 7 seconds.
> I have played with the buffers setting and currently
> have it at 7500. At 20000 it took over 20 seconds to
> run.
>
> 5 seconds vs 7 isn't that big of a deal, but 1 second
> vs 7 seconds is. Also, the slower performance is with
> much lesser hardware.

Post the result of this for us:

explain analyze select count(*) from mtable where day='Mon';

On both machines.

Chris

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

Предыдущее
От: mark durrant
Дата:
Сообщение: Select performance vs. mssql
Следующее
От: mark durrant
Дата:
Сообщение: Re: Select performance vs. mssql