Re: Customizing psql console to show execution times

Поиск
Список
Период
Сортировка
От Leif B. Kristensen
Тема Re: Customizing psql console to show execution times
Дата
Msg-id 200708151736.56212.leif@solumslekt.org
обсуждение исходный текст
Ответ на Customizing psql console to show execution times  ("Phoenix Kiula" <phoenix.kiula@gmail.com>)
Список pgsql-general
On Wednesday 15. August 2007, Phoenix Kiula wrote:
>In some examples posted to this forum, it seems to me that when people
>execute queries in the psql window, they also see "90 ms taken"
>(milliseconds), which denotes the time taken to execute the query.
>Where can I set this option because I'm not seeing it in my psql
>window on both Win XP and Linux. Thanks!

pgslekt=> select count(*) from persons;
 count
-------
 16704
(1 row)

pgslekt=> \timing
Timing is on.
pgslekt=> select count(*) from persons;
 count
-------
 16704
(1 row)

Time: 3,127 ms
pgslekt=> \timing
Timing is off.
pgslekt=>
--
Leif Biberg Kristensen | Registered Linux User #338009
http://solumslekt.org/ | Cruising with Gentoo/KDE
My Jazz Jukebox: http://www.last.fm/user/leifbk/

В списке pgsql-general по дате отправления:

Предыдущее
От: "Phoenix Kiula"
Дата:
Сообщение: Re: Yet Another COUNT(*)...WHERE...question
Следующее
От: "Scott Marlowe"
Дата:
Сообщение: Re: Customizing psql console to show execution times