When I create a partition table in my oracle 9i database, the following error occurs:

create table a (deptno number, deptname varchar2(1))
partition by range (deptno)
(partition ab values less than (1))

*
ERROR at line 1:
ORA-00439: feature not enabled: Partitioning


What happened?