Re: indexes are not working for - Mailing list pgsql-admin

From Robert Treat
Subject Re: indexes are not working for
Date
Msg-id 200410220854.28954.xzilla@users.sourceforge.net
Whole thread Raw
In response to indexes are not working for  (Anshaj <anshaj@in2m.com>)
List 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 by date:

Previous
From: "Simon Riggs"
Date:
Subject: Re: replication using WAL archives
Next
From: Joe Maldonado
Date:
Subject: Re: REVOKE not working...