Re: now() gives same time within the session

Поиск
Список
Период
Сортировка
От A. Kretschmer
Тема Re: now() gives same time within the session
Дата
Msg-id 20100712111500.GA14489@a-kretschmer.de
обсуждение исходный текст
Ответ на now() gives same time within the session  (<Atul.Goel@globaldatapoint.com>)
Ответы Re: now() gives same time within the session  (<Atul.Goel@globaldatapoint.com>)
Re: now() gives same time within the session  (Rob Wultsch <wultsch@gmail.com>)
Re: now() gives same time within the session  (Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>)
Список 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 по дате отправления:

Предыдущее
От:
Дата:
Сообщение: now() gives same time within the session
Следующее
От: Jayadevan M
Дата:
Сообщение: PostgreSQL PITR - more doubts