bitmap index 说明: set echo on drop table t purge; create table t ( processed_flag ) ); create bitmap index t_idx on t(processed_flag); insert into t values ( 'N' ); declare pragma autonomous_transaction; begin insert into t values ( 'N' ); commit; end…