Bitmapped indexes not enabled in Oracle XE
Asked Answered
T

2

5

I am using Oracle 10g XE (express edition). If I try to create a bitmap index, I get an error

ORA-00439 feature not enabled: Bit mapped Indexes

How do I solve this problem and create a bitmap index?

Tuberous answered 15/5, 2012 at 16:30 Comment(4)
Which edition of 10g? I believe bitmap indexes are only available in Enterprise Edition, but don't have a reference for that to hand.Nickens
@AlexPoole I am using Express EditionTuberous
Please can you tell me the solution...Tuberous
The solution is simple - send money to Oracle. Bitmapped indexes are Enterprise only, at least in 10g.Charkha
S
8

The online documentation includes a Licensing guide. This says:

Feature                                |  Availability
---------------------------------------+--------------
Bitmapped index, bitmapped join index  |  No

Find out more.

The point being, Express Edition is free and consequently doesn't come with all the features of Oracle's paid for databases.

Selfregulated answered 15/5, 2012 at 22:11 Comment(0)
T
0

It is possible to see the status of the bitmap feature by using the following query:

select * from V$OPTION WHERE PARAMETER = 'Bit-mapped indexes';


PARAMETER                                   VALUE                    CON_ID
------------------------------------------- ------------------------ ----------
Bit-mapped indexes                          TRUE                      0

I just checked the documentation because I run into the same error. Depending on the edition this feature is anabled or not:

  • Express Edition: FALSE
  • Standard Edition: FALSE
  • Enterprise Edition: TRUE
Theall answered 25/8, 2020 at 13:55 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.