Re: Execution plan

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: Execution plan
Дата
Msg-id AANLkTildotCdmP7MofqQKFsV-Q4IzjQquR31NZxV1Rv5@mail.gmail.com
обсуждение исходный текст
Ответ на Execution plan  (std pik <stdpik@gmail.com>)
Список pgsql-admin
On Thu, Jul 22, 2010 at 10:10 PM, std pik <stdpik@gmail.com> wrote:
> Hi all..
> Can any one help me?
> I'd like to know how can we get the following information in
> PostgreSQL:
> Execution plan

explain <your query here>
explain analyze <your query here>

explain just shows the plan, explain analyze shows the plan, runs the
query, then shows the difference between the plan and actual
execution.

> The I/O physical reads and logical reads, CPU consumption, number of
> DB block used, and any other information relevant to performance.
> Taking into consideration that these information could be extracted
> from Oracle by AWR, TKPROF, ...etc.

Yeah, pgsql doesn't really track a lot of that stuff as well as
oracle.  You can use pg_stat_* tables to get some idea, and running an
individual query while using tools like iostat, vmstat, htop, and more
can give you some idea of how it's working the system.  Also the
pg_buffercache stuff (I think that's the name I'm away from my servers
right now)

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

Предыдущее
От: Andreas Schmitz
Дата:
Сообщение: Re: Restore a backup to a different disk?
Следующее
От: Lou Picciano
Дата:
Сообщение: FTP client functions?