I have never used partitioning. So I tried for the first time:

create table mnemonical (
id number primary key,
b varchar2(10))
partition by range (id)
(partition p1 values less than (10),
partition p2 values less than (maxvalue))

I got ORA-00439 error. "resource not active: partitioning"

this is my version:

SQL*Plus: Release 8.1.7.0.0 - Production on Seg Abr 1 20:36:02 2002

(c) Copyright 2000 Oracle Corporation. All rights reserved.

Conectado a:
Oracle8i Release 8.1.7.0.0 - Production
JServer Release 8.1.7.0.0 - Production

SQL>


Do I have to install something? What?


Tks in advance.
F.