I have a large table of about 7M rows (and counting). I'm trying to optimize a SELECT to be as fast as possible. SELECT is from a single table, no joins. Database is IBM Informix. SELECT speed is priority, however there is a pretty constant number of inserts to the table.
There are 23 parameters in WHERE, but I've identified the dates and the language as the ones that are worth indexing:
...
WHERE (? >= valid_from OR valid_from IS NULL)
AND (? <= valid_to OR valid_to IS NULL)
AND ((? >= date_from AND ? <= date_to) OR (? >= date_from AND ? <= date_to))
AND language = ?
...
Now, what would be the best way to create indexes on that?
Do I create separate indexes from valid_from, valid_to, date_from, date_to and language? Or do I create three composite indexes (valid_from, valid_to), (date_from, date_to) and language? Or do I create one large composite index with all five? All fields are mandatory.
Are indexes on dates that are being compared a good idea, or should I restrict myself only to those fields that use = (exact match)?
If the composite indexes are the way, I guess the order of the fields in composite index is important - how do I order columns in index? Columns date_from and date_to would give me the biggest first reduction, but language might give me the faster reduction (though this is assumption I pulled out of thin air - see question 2).
If there are multiple indexes, does Informix use all of them or just one (and which one)?
My tests show that order of conditions in WHERE is not important, however I might be wrong - is it?
Some of the conditions in WHERE are on columns which are sets. Informix doesn't allow me to index those columns. Does that mean that those conditions are matched by sequential scan? Does it make sense speed-wise to move those to separate table and JOIN them?
What I've done so far:
- Obviously, there are no joins and this is a denormalized table. I'm paying for this with a somewhat larger number of rows that are being inserted, which is fine with me since updates are not time sensitive.
- I'm using pretty large Informix extents to avoid fragmentation, and pagesize which gives the best results for my table.
languagefield), will effectively handle one filter "for free". 7M is not a lot of rows, but it sounds like you have a very wide table; schema? I'm not familiar with Informix so I'm not the best person to address this. – Jon of All Trades May 19 '11 at 21:29