Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: bitmap join index error
I have tried to create all possible UNIQUE constraints,
but the error remains the same:
delete from ma14_doc_feats; insert into ma14_doc_feats(doc_id, feat_id) values(1, 1001); insert into ma14_doc_feats(doc_id, feat_id) values(2, 1002); insert into ma14_doc_feats(doc_id, feat_id) values(3, 1003);commit;
SQL> create bitmap index ma14_doc_feats_bitmap1
2 on ma14_feats(d.doc_id)
3 from ma14_feats f, ma14_docs d, ma14_doc_feats dfi
4 where f.feat_id=dfi.feat_id
5 and d.doc_id=dfi.doc_id;
from ma14_feats f, ma14_docs d, ma14_doc_feats dfi
*
My version of Oracle is Oracle9i Enterprise Edition Release 9.2.0.1.0
Misha. Received on Tue Jul 15 2003 - 05:47:39 CDT
![]() |
![]() |