Re: Tuning planner cost estimates

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Tuning planner cost estimates
Дата
Msg-id 5514.1116522981@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Tuning planner cost estimates  (Josh Berkus <josh@agliodbs.com>)
Ответы Re: Tuning planner cost estimates
Список pgsql-performance
Josh Berkus <josh@agliodbs.com> writes:
> I think a first step would be, in fact, to develop a tool that allows us to
> put EXPLAIN ANALYZE results in a database table.  Without that, there is no
> possibility of statistical-scale analysis.

AFAIK you can do that today using, eg, plpgsql:

    for rec in explain analyze ... loop
        insert into table values(rec."QUERY PLAN");
    end loop;

            regards, tom lane

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

Предыдущее
От: Donald Courtney
Дата:
Сообщение: Re: PostgreSQL strugling during high load
Следующее
От: Josh Berkus
Дата:
Сообщение: Re: Tuning planner cost estimates