Re: now() gives same time within the session - Mailing list pgsql-performance

From A. Kretschmer
Subject Re: now() gives same time within the session
Date
Msg-id 20100712111500.GA14489@a-kretschmer.de
Whole thread Raw
In response to now() gives same time within the session  (<Atul.Goel@globaldatapoint.com>)
Responses Re: now() gives same time within the session
Re: now() gives same time within the session
Re: now() gives same time within the session
List pgsql-performance
In response to Atul.Goel@globaldatapoint.com :
> Hi,
>
>
>
> I need to log the start and end time of the procedures in a table. But the
> start and end time are same. This is how I recreated the issue.
>
>
>
> create table test_time (time timestamp);
>
> delete from  test_time;
>
> insert into test_time select now();


Use timeofday() instead, now() returns the transaction starting time.

BEGIN
test=*# select now();
              now
-------------------------------
 2010-07-12 13:13:28.907043+02
(1 row)

test=*# select timeofday();
              timeofday
--------------------------------------
 Mon Jul 12 13:13:36.187703 2010 CEST
(1 row)

test=*# select now();
              now
-------------------------------
 2010-07-12 13:13:28.907043+02
(1 row)

test=*#


Regards, Andreas
--
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG: 0x31720C99, 1006 CCB4 A326 1D42 6431  2EB0 389D 1DC2 3172 0C99

pgsql-performance by date:

Previous
From:
Date:
Subject: now() gives same time within the session
Next
From: Jayadevan M
Date:
Subject: PostgreSQL PITR - more doubts