Hello,
We have 12c on our server, we have a requeriment to create partitioned tables for our monthly sales fact tables but our columns are numeric based instead of date datatype.
For example we have:
CREATE TABLE SALES (
month_id integer,
sales_rep_id integer,
sales numeric(18,4) )
Our month_id filelds are 201701, 201702...201712
Is there a way to create partition intervals (to take the advantadge of automatic partitioning) with this range?
Any help is appreciated.
Thanks!