Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> How can i solve this problem ? "ORA-00439: feature not enabled: Partitioning"

How can i solve this problem ? "ORA-00439: feature not enabled: Partitioning"

From: Lee Kil Moon <kmlee_at_otech.co.kr>
Date: Mon, 20 Sep 1999 16:37:57 +0900
Message-ID: <7s4ner$p2h$1@news2.kornet.net>


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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US