Re: SQL query timing question - Mailing list pgadmin-support

From Dave Page
Subject Re: SQL query timing question
Date
Msg-id E7F85A1B5FF8D44C8A1AF6885BC9A0E490E2B9@ratbert.vale-housing.co.uk
Whole thread Raw
In response to SQL query timing question  (Dave Lazar <hunkybill@gmail.com>)
List pgadmin-support

> -----Original Message-----
> From: pgadmin-support-owner@postgresql.org
> [mailto:pgadmin-support-owner@postgresql.org] On Behalf Of Dave Lazar
> Sent: 02 June 2005 20:00
> To: pgadmin-support@postgresql.org
> Subject: [pgadmin-support] SQL query timing question
>
> Hi,
>
> I have a table with 10 rows, and about 50 columns. Not much need for
> indexing. When I execute a select * command, it can take 18ms to run
> the query, but 1300ms for the data retrieval time for example...
>
> What controls this data retrieval timing? It seems like my query
> executes fast, but the bottleneck is this value?? Is there something
> in postgresql.conf that needs tweaking. I have a RH box with a 17Ghz
> P4 and 2 gigs RAM, and the bottleneck pgAdmin shows me appears to be
> this data retrieval time.
>
> Could someone more familiar with this please fill me in little. I
> thought it was RAM or HD speed slowing some PHP scripts down with SQL
> in them, but now, using just pgAdmin 1.2 to query the server directly
> I see the problem may be postgres setup.
>
> I realize that time may be the measure of the time it takes to
> transfer the data from the server to the pgAdmin client... but it also
> seems that the results are that slow being transferred from a request
> originating with a PHP script running on the server and connecting via
> ADOdb and localhost to the postmaster... what can be done to measure
> and or speed the data retrieval times???

Hi,

Have you run VACUUM FULL on the table recently? It sounds like it might
get lots of updates which could be leaving hundreds or even thousands of
dead tuples in the physical file - which consequently take a long time
to scan to find the live ones.

Regards, Dave.


pgadmin-support by date:

Previous
From: Dave Lazar
Date:
Subject: SQL query timing question
Next
From: Andreas Pflug
Date:
Subject: Re: SQL query timing question