Re: PostgreSQL runs a query much slower than BDE and

From: Mark Lewis <mark(dot)lewis(at)mir3(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Peter Hardman <peter(at)ssbg(dot)zetnet(dot)co(dot)uk>, pgsql-performance(at)postgresql(dot)org
Subject: Re: PostgreSQL runs a query much slower than BDE and
Date: 2006-08-17 13:54:00
Message-ID: 1155822840.16967.238.camel@archimedes
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

MSSQL can give either a graphical query plan or a text-based one similar
to PG. There's no way that I've found to get the equivalent of an
EXPLAIN ANALYZE, but I'm by no means an MSSQL guru.

To get a neat-looking but not very useful graphical query plan from the
Query Analyzer tool, hit <Ctrl-L>.

To get the text-based one, execute "SET SHOWPLAN_ALL ON" which toggles
diagnostic mode on, and each query that you run will return the explain
plan instead of actually running until you execute "SET SHOWPLAN_ALL
OFF".

-- Mark Lewis

On Thu, 2006-08-17 at 09:11 -0400, Tom Lane wrote:
> "Peter Hardman" <peter(at)ssbg(dot)zetnet(dot)co(dot)uk> writes:
> > I wonder whether Paradox and MySQL are just not doing the sort (this
> > seems to be what eats up the time), since the output of the subquery
> > is in fact already in the proper order.
>
> MSSQL (from the other thread). I feel fairly safe in assuming that
> MySQL's query optimizer is not nearly in the league to do this query
> effectively. (I like the theory Arjen mentioned that what you are
> measuring there is the effects of their query cache rather than a
> smart fundamental implementation.) I wonder whether MSSQL has an
> EXPLAIN equivalent ...
>
> Anywy, your point about the sort being redundant is a good one, and
> offhand I'd have expected PG to catch that; I'll have to look into
> why it didn't. But that's not going to explain a 10x speed
> difference, because the sort isn't 90% of the runtime.
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Have you searched our list archives?
>
> http://archives.postgresql.org

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Magnus Hagander 2006-08-17 16:31:39 Re: PostgreSQL runs a query much slower than BDE and
Previous Message Tom Lane 2006-08-17 13:11:50 Re: PostgreSQL runs a query much slower than BDE and MySQL