Re: 500x speed-down: Wrong query plan?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: 500x speed-down: Wrong query plan?
Дата
Msg-id 6719.1136832065@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: 500x speed-down: Wrong query plan?  (Alessandro Baretta <a.baretta@barettadeit.com>)
Ответы Re: 500x speed-down: Wrong query plan?  (Alessandro Baretta <a.baretta@barettadeit.com>)
Список pgsql-performance
Alessandro Baretta <a.baretta@barettadeit.com> writes:
> Matteo Beccati wrote:
>> Are you sure that you recentrly ANALYZED the table "ubicazione"? If so,
>> try to increase statistics for the id_ente column.

> No, this is not the problem. I increased the amount of statistics with ALTER
> TABLE ... SET STATISTICS 1000, which is as much as I can have.

What Matteo wanted to know is if you'd done an ANALYZE afterward.  ALTER
TABLE SET STATISTICS doesn't in itself update the statistics.

What do you get from

EXPLAIN SELECT * FROM articolo WHERE articolo.xdbs_modified > '2006-01-08 18:25:00+01';

I'm curious to see how many rows the planner thinks this will produce,
and whether it will use the index or not.

Also, I gather from the plan choices that the condition id_ente = 'dmd'
isn't very selective ... what fraction of the rows in each table
satisfy that?

            regards, tom lane

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

Предыдущее
От: peter royal
Дата:
Сообщение: Re: help tuning queries on large database
Следующее
От: Alessandro Baretta
Дата:
Сообщение: Re: 500x speed-down: Wrong query plan?