Analyze makes queries slow...

From: Stef <svb(at)ucs(dot)co(dot)za>
To: Postgres SQL List <pgsql-sql(at)postgresql(dot)org>
Subject: Analyze makes queries slow...
Date: 2003-08-06 15:18:55
Message-ID: 20030806171855.6c9ebf4d.svb@ucs.co.za
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi all,

I have a problem :

A select statement that selects from 7 tables,
groups the information by 6 columns of the
tables involved.

When there are no rows in pg_statistics,
the query runs under 3 minutes.

When I analyze the biggest table of the 7
(approx 1000000 rows), the query takes longer than
12 Hours (Had to kill it eventually).

I have the explain plan of the original, under 3 minutes
query, and would like to reverse engineer this, to
build up a query with proper join statements, as I understand
that this is a way of forcing the planner to join the table
in a faster way.

I got very close a couple of times, but still can't get it 100%
the same as what the planner did prior to analyzing.

The database is actually faster when analyzed, except
for two or three multiple join queries (which don't finish
after analyze) So I would like to make an exception
for the tables that are used in these queries only,
or do proper joins.

Can anybody help, or give some links to good
help resources?

TIA
Stefan

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Wilson A. Galafassi Jr. 2003-08-06 18:03:41 PostgreSql under Linux
Previous Message Andrew Droffner 2003-08-06 15:12:56 User-defined SQL function has slower query on 7.3.3 than 7.1.3