Re: 7.3.1 New install, large queries are slow

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Roman Fail" <rfail(at)posportal(dot)com>
Cc: josh(at)agliodbs(dot)com, pgsql-performance(at)postgresql(dot)org
Subject: Re: 7.3.1 New install, large queries are slow
Date: 2003-01-16 04:35:00
Message-ID: 11547.1042691700@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

"Roman Fail" <rfail(at)posportal(dot)com> writes:
> Thanks to everyone for the quick replies! I'm sure that my lack of
> skill with SQL queries is the main problem. What's strange to me is
> how MSSQL takes my bad queries and makes them look good anyway. It
> must have a real smart planner.

I think more likely the issue is that your use of JOIN syntax is forcing
Postgres into a bad plan. MSSQL probably doesn't assign any semantic
significance to the use of "a JOIN b" syntax as opposed to "FROM a, b"
syntax. Postgres does. Whether this is a bug or a feature depends on
your point of view --- but there are folks out there who find it to be
a life-saver. You can find some explanations at
http://www.ca.postgresql.org/users-lounge/docs/7.3/postgres/explicit-joins.html

> Is it pretty much universally accepted that I should drop all my
> foreign keys?

No. They don't have any effect on SELECT performance in Postgres.
They will impact update speed, but that's not your complaint (at the
moment). Don't throw away data integrity protection until you know
you need to.

regards, tom lane

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Josh Berkus 2003-01-16 04:41:11 Re: 7.3.1 New install, large queries are slow
Previous Message Stephan Szabo 2003-01-16 03:46:16 Re: 7.3.1 New install, large queries are slow