I always thought that bitmap indexes in an OLTP environment was not
a good idea (time taken to update the indexes etc..).
(I was even 'taught' this during an Oracle optimisation course)
However having ran Oracle Expert on our database it suggests
creating bitmap indexes on certain tables/columns.
What is your opinion on using BitMap indexes in an OLTP environment ?
Many thanks
Paul
Sent via Deja.com http://www.deja.com/
Before you buy.
The reason is ORACLE cannot take a "bit" lock when updating the index.
Instead, it has to lock the entire block (i.e. thousands of rows).
This will kill your concurrency on write operations.l
ORACLE Expert probably just saw columns frequently used in where
clauses with a low cardinality and recommended bitmap indexes.;
thanks,
dave
In article <8id8ae$jtd$1...@nnrp1.deja.com>,