Check if you have installed partitioning with the following query

select * from v$option where parameter = 'Partitioning';
You should be able to see the following if partitioning is available.
PARAMETER VALUE
------------- -------------------

Partitioning TRUE

If you have not then you will have to reinstall the server with partitioning option.

Sam