index is not used - Mailing list pgsql-novice

From mila boldareva
Subject index is not used
Date
Msg-id 13389921169.20020820131733@dds.nl
Whole thread Raw
Responses Re: index is not used  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-novice
Hello,
i need help for my strange problem.

I have a table of ~ 9 000 000 rows,

      Table "mytable"
  Column  |  Type   | Modifiers
----------+---------+-----------
 field1   | integer | not null
 field2   | integer | not null
 field3   | real    |
Indexes: mytable_field1_key,
         mytable_field3_key
Primary key: mytable_field1_field2_pkey

But the indices are not used, even when I added a separate index on
field1 !

  trc=# explain select *  from mytable where field1 = 6;
  NOTICE:  QUERY PLAN:

  Seq Scan on mytable  (cost=0.00..182382.74 rows=49579 width=4)

  EXPLAIN

OR:

  trc=# explain select * from mytable where field3 = 0.3;
  NOTICE:  QUERY PLAN:

  Seq Scan on mytable  (cost=0.00..182382.74 rows=49579 width=4)

  EXPLAIN

I am using postgres 7.2.1 on RedHat.

On the same installation in another database similar table of 100 rows
uses  the indices when needed.

thanks in advance,
mila.


pgsql-novice by date:

Previous
From: Josh Berkus
Date:
Subject: Part 2 of Joy of Index up
Next
From: "Darrin Domoney"
Date:
Subject: Event recurrence - in database or in application code ????