Re: indexes are not working for

Поиск
Список
Период
Сортировка
От Robert Treat
Тема Re: indexes are not working for
Дата
Msg-id 200410220854.28954.xzilla@users.sourceforge.net
обсуждение исходный текст
Ответ на indexes are not working for  (Anshaj <anshaj@in2m.com>)
Список pgsql-admin
Please do not post new topic as reply's to unrelated threads!!

On Friday 22 October 2004 02:10, Anshaj wrote:
> Dear group,
>
>          I have a table foo
> anshajdb=# \d foo
>            Table "public.foo"
>  Column  |       Type        | Modifiers
> ---------+-------------------+-----------
>  snumber | numeric(18,0)     |
>  test    | character varying |
> Indexes:
>     "snum_idx" btree (snumber)
>
> when I try to do a query like
> explain analyze select * from foo where snumber > 1000;
>
> Seq Scan on foo  (cost=0.00..69.00 rows=320 width=391) (actual
> time=0.011..0.721 rows=323 loops=1)
>    Filter: (snumber > 1000::numeric)
>  Total runtime: 0.979 ms
> (3 rows)
> It do a sequence scan on table. Why it is not using the snum_idx in this
> query. Do I need to change some setting or indexes don't work on this
> types of query.
>

You query is not selective enough for the database to use an index. ie. your
retrieving 323 rows from at best 1323 rows in the table, so the database
figures it can grab all of the records much faster by just doing a seq scan
on the table.   Try adding some more data to the table and/or selecting a
specific value and you'll see your index get used.

--
Robert Treat
Build A Brighter Lamp :: Linux Apache {middleware} PostgreSQL

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

Предыдущее
От: "Simon Riggs"
Дата:
Сообщение: Re: replication using WAL archives
Следующее
От: Joe Maldonado
Дата:
Сообщение: Re: REVOKE not working...