Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> How can i solve this problem ? "ORA-00439: feature not enabled: Partitioning"
Hi All ~
I'm testing for table partition on oracle 8.04 on NT4
But ora-00439 error is occurs.
How can i fix this problem ?
Below is my DDL source.
1 create table part_table1
2 (emp_id number not null primary key,
3 zip_code number not null,
4 descrip varchar2(80)
5 )
6 partition by range (reg_id)
7 (
8 partition easter values less than(25000),
9 partition central values less than(60000),
10 partition western values less than(99999)
11* )
SQL>
SQL> /
create table part_table1
*
ERROR at line 1:
ORA-00439: feature not enabled: Partitioning
Received on Mon Sep 20 1999 - 02:37:57 CDT
![]() |
![]() |