From: | Josh Berkus <josh(at)agliodbs(dot)com> |
---|---|
To: | "Heiko Kehlenbrink" <Heiko(dot)Kehlenbrink(at)vermes(dot)fh-oldenburg(dot)de>, pgsql-performance(at)postgresql(dot)org |
Subject: | Re: performance comparission postgresql/ms-sql server |
Date: | 2004-04-05 15:52:51 |
Message-ID: | 200404050852.51709.josh@agliodbs.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-performance |
Heiko,
> 100.000 from 50.000.000:
>
> postgres: 0.88 sec
> ms-sql: 0.38 sec
>
> 200.000 from 50.000.000:
>
> postgres: 1.57 sec
> ms-sql: 0.54 sec
>
> 500.000 from 50.000.000:
>
> postgres: 3.66 sec
> ms-sql: 1.18 sec
Questions:
1. Is this the time to return *all rows* or just the first row? Given the
different way that PostgreSQL fetches rows to the client from MSSQL, it makes
a difference.
2. What are your sort-mem and shared-mem settings?
3. Have you tried clustering the table?
4. Have you done a comparison of selecting random or scattered, instead of
serial rows? MSSQL has a tendency to physically store rows in "order" which
gives it a certain advantage in this kind of query.
--
Josh Berkus
Aglio Database Solutions
San Francisco
From | Date | Subject | |
---|---|---|---|
Next Message | Shridhar Daithankar | 2004-04-05 15:54:46 | Re: performance comparission postgresql/ms-sql server |
Previous Message | Josh Berkus | 2004-04-05 15:36:52 | Re: PostgreSQL and Linux 2.6 kernel. |