Reputation: 2327
I have installed oracle 10G XE but in the time of installation i may have not enabled the partion option.now when i am running the command
select * from v$option where parameter = 'Partitioning'; its showing false ..
when i tried to run this script
CREATE TABLE products
(partno NUMBER,
description VARCHAR2 (60))
PARTITION BY HASH (partno)
PARTITIONS 4
STORE IN (tab1, tab2, tab3, tab4);
it shows that
ORA-00439: feature not enabled: Partitioning
i have important tables there if i delete the database then i will have to face problem.
can i enable portioning option after installing??or i have to re install the oracle??please help.
Upvotes: 1
Views: 26248