Re: optimizing queries and indexes... - Mailing list pgsql-sql

From Josh Berkus
Subject Re: optimizing queries and indexes...
Date
Msg-id web-119877@davinci.ethosmedia.com
Whole thread Raw
In response to Re: optimizing queries and indexes...  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-sql
Tom,

> [ Sorry for slow response, I've been out of town ]

Taking a much-deserved vacation, hey?  Any new job plans?

> Postgres absolutely does not care: the optimizer will always consider
> both A-join-B and B-join-A orders for every join it has to do.  As
> Stephan and Josh noted, you can constrain the join pairs the
> optimizer
> will consider if you use explicit-JOIN syntax --- but each pair will
> be
> considered in both directions.

Fantastic!  You may want to point out to unbelievers that MS SQL Server
does not do this; if you fail to put your joins/where clauses in the
*exact* order of the indecies in SQL Server, it ignores them and does a
table scan.  This is especially deadly because table scans are about 1/2
as fast in SQL Server as they are in Postgres.

-Josh

______AGLIO DATABASE SOLUTIONS___________________________
                                       Josh Berkus
  Complete information technology      josh@agliodbs.com
   and data management solutions       (415) 565-7293
  for law firms, small businesses        fax 621-2533
    and non-profit organizations.      San Francisco

Attachment

pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: Intentional, or bug?
Next
From: Kovacs Baldvin
Date:
Subject: Part 2 of "Intentional, or a bug"....