Re: Index not being used - Mailing list pgsql-general

From Scott Marlowe
Subject Re: Index not being used
Date
Msg-id dcc563d10708131909i31c0406dobb42523c9157d8e6@mail.gmail.com
Whole thread Raw
In response to Re: Index not being used  (Ralph Smith <smithrn@u.washington.edu>)
List pgsql-general
Oh, and you can use the sledge hammer of tuning by using the

set enable_xxx = off

settings for the planner.  It's not a normal way to tune most queries,
but it certainly can let you know if the problem is using the index or
not.

psql mydb
\timing
select count(*) from table where field > 12345;
set enable_seqscan=off;
select count(*) from table where field > 12345;

and compare them.  run each a few times, since the cache will affect
the performance.

pgsql-general by date:

Previous
From: "Scott Marlowe"
Date:
Subject: Re: Index not being used
Next
From: "Scott Marlowe"
Date:
Subject: Re: Index not being used