Re: Slow SELECT with distinct, in a TIMESTAMP type column

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: Slow SELECT with distinct, in a TIMESTAMP type column
Дата
Msg-id 20020624113546.R56100-100000@megazone23.bigpanda.com
обсуждение исходный текст
Ответ на Slow SELECT with distinct, in a TIMESTAMP type column  (Marcos Garcia <marcos-p-garcia@ptinovacao.pt>)
Ответы Re: Slow SELECT with distinct, in a TIMESTAMP type column  (Marcos Garcia <marcos-p-garcia@ptinovacao.pt>)
Список pgsql-sql
On 24 Jun 2002, Marcos Garcia wrote:

> The problem is that my query is too slow when i use distinct:
>
> pgsql> explain analyze SELECT distinct(smsdate) FROM send_total;
>
> NOTICE:  QUERY PLAN:
>
> Unique  (cost=15840.31..15870.81 rows=1220 width=8) (actual
> time=56358.93..56452.78 rows=6670 loops=1)
>   ->  Sort  (cost=15840.31..15840.31 rows=12203 width=8) (actual
> time=56358.91..56436.95 rows=12062 loops=1)
>         ->  Seq Scan on send_total  (cost=0.00..15012.03 rows=12203
> width=8) (actual time=0.55..56205.25 rows=12062 loops=1)
> Total runtime: 56518.26 msec

As a question, what does explain analyze show if you
set enable_seqscan=off; first?






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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: Slow SELECT with distinct, in a TIMESTAMP type column
Следующее
От: Marcos Garcia
Дата:
Сообщение: Re: Slow SELECT with distinct, in a TIMESTAMP type column