> -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of > [EMAIL PROTECTED] > > is it possible to have a primary key that is enforced with a > bitmap index?
I don't think so. Here's an example from a 9.2.0.3 database: SQL> create table t (v varchar2 (10), d date) ; Table cr��e. SQL> create bitmap index bit1 on t (v) ; Index cr��. SQL> alter table t add (constraint t_pk primary key (v)) ; alter table t add (constraint t_pk primary key (v)) * ERREUR � la ligne 1 : ORA-01408: such column list already indexed -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Jacques Kilchoer INET: [EMAIL PROTECTED] Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
