Re: Difference between "Explain analyze" and "\timing"

From: Bill Moran <wmoran(at)collaborativefusion(dot)com>
To: tarcizioab(at)c3sl(dot)ufpr(dot)br
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Difference between "Explain analyze" and "\timing"
Date: 2008-07-31 00:59:22
Message-ID: 20080730205922.ba73b732.wmoran@collaborativefusion.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

tarcizioab(at)c3sl(dot)ufpr(dot)br wrote:
>
> Hello friends
>
> The commands "\timing" and "EXPLAIN ANALYZE" return values related to the
> time of execution of the instruction. These values are "Time:" and "Total
> runtime:" respectively. What is the difference between these values, and
> the specific use of each command in queries?

The time reported by explain will be the time it took the server to
execute the query.

The time reported by \timing is the time it takes the client (psql) to
get the result. This will be the time the server took, plus any network
delays and time required to process the query and result on the client
side.

--
Bill Moran
Collaborative Fusion Inc.

wmoran(at)collaborativefusion(dot)com
Phone: 412-422-3463x4023

****************************************************************
IMPORTANT: This message contains confidential information
and is intended only for the individual named. If the reader of
this message is not an intended recipient (or the individual
responsible for the delivery of this message to an intended
recipient), please be advised that any re-use, dissemination,
distribution or copying of this message is prohibited. Please
notify the sender immediately by e-mail if you have received
this e-mail by mistake and delete this e-mail from your system.
E-mail transmission cannot be guaranteed to be secure or
error-free as information could be intercepted, corrupted, lost,
destroyed, arrive late or incomplete, or contain viruses. The
sender therefore does not accept liability for any errors or
omissions in the contents of this message, which arise as a
result of e-mail transmission.
****************************************************************

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tom Lane 2008-07-31 01:06:38 Re: Difference between "Explain analyze" and "\timing"
Previous Message tarcizioab 2008-07-31 00:19:15 Difference between "Explain analyze" and "\timing"