Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Bitmap index design question
Oracle9i Enterprise Edition Release 9.2.0.5.0 - Production, resident on UNIX SunOS 5.8
I can use some help on whether or not to utilize a bitmap index on a new table that is being created.
Here is the table create script:
create table test.recording_info_xmit_status
( loan_id varchar2 ( 20 ) not null
, doc_type number ( 22 ) not null
, ri_status_flag varchar2 ( 1 )
, ri_status_flag_updt_dt date
alter table test.recording_info_xmit_status
add constraint pk_recording_info_xmit_status
primary key ( loan_id , doc_type )
using index
tablespace testindx
;
Here is a summary of the application processing that we are trying to address:
I want to minimize the introduction of any new performance issues with the .net application so I am leery of creating a bitmap index on ri_status_flag with the attendant index overhead. The Oracle book that I am referencing indicates bitmap indexes should only be used if the data is infrequently updated. I am interpreting 2000 rows/day as frequent.
Can anyone give me some idea if this is a reasonable design/approach? Is there anything else that I should be considering?. Any suggestions on how to mitigate the application performance considerations with the ever-growing table and longer batch run time?
TIA for any help on this.
Luke Received on Mon Oct 31 2005 - 13:36:10 CST
![]() |
![]() |