I have been looking through the archives but can't find anything on this.
Does the use of WHERE field NOT IN ('A','B' etc) prevent the use of an
index?
Would changing the query to WHERE field <> 'A' and field <> 'B' etc help?
The query only involves one table, and this is the only field in the where
clause. Explain plan indicates a Sort and Seq Scan are being done.
THanks