Re: Postgres 9 : - How to interpret the EXPLAIN query results

From: Khangelani Gama <kgama(at)argility(dot)com>
To: Thomas Kellerer <spam_eater(at)gmx(dot)net>, pgsql-admin(at)postgresql(dot)org
Subject: Re: Postgres 9 : - How to interpret the EXPLAIN query results
Date: 2015-03-25 11:34:35
Message-ID: d3ca3e6d174a3cd29f0365e3e29dfb07@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

-----Original Message-----
From: pgsql-admin-owner(at)postgresql(dot)org
[mailto:pgsql-admin-owner(at)postgresql(dot)org] On Behalf Of Thomas Kellerer
Sent: 25 March 2015 01:05 PM
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: [ADMIN] Postgres 9 : - How to interpret the EXPLAIN query
results

Khangelani Gama schrieb am 25.03.2015 um 11:28:
> Thanks to all, but if this total cost is the total time it will take to
> retrieve the output then is it in minutes or milliseconds?
> If it’s in milliseconds does it mean that it take about 213 hrs for a
> total of 768375132.77

No. The cost is not the total time.

Quote from the manual

measured in cost units that are arbitrary, but conventionally mean disk
page fetches

In general you can _assume_ that a query with a higher cost is likely to run
longer than an equivalent query with lower costs.

If you want the runtime of each step you need to use "explain (analyze)" -
again this is documented in the manual.

Thomas

Many Thanks Thomas

--
Sent via pgsql-admin mailing list (pgsql-admin(at)postgresql(dot)org) To make
changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin

CONFIDENTIALITY NOTICE
The contents of and attachments to this e-mail are intended for the addressee only, and may contain the confidential
information of Argility (Proprietary) Limited and/or its subsidiaries. Any review, use or dissemination thereof by anyone
other than the intended addressee is prohibited.If you are not the intended addressee please notify the writer immediately
and destroy the e-mail. Argility (Proprietary) Limited and its subsidiaries distance themselves from and accept no liability
for unauthorised use of their e-mail facilities or e-mails sent other than strictly for business purposes.

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message naveen kumar 2015-03-25 15:31:32 Re: pg_xlog-files not deleted on a standby after accidental server crash
Previous Message Thomas Kellerer 2015-03-25 11:05:28 Re: Postgres 9 : - How to interpret the EXPLAIN query results