Table Data Range Partitioning Format DD-MON-RR.
I noticed i am unable to create a partition table with the date format "DD-MON-RR" :
PARTITION BY RANGE
(FPDATE) INTERVAL (NUMTOYMINTERVAL(1, 'MONTH'))
(PARTITION BOOKS_01 VALUES LESS THAN (TO_DATE('01-NOV-15','DD-MON-RR'))
ORA-14120: incompletely specified partition bound for a DATE column
Is there a way to create a partition using this format, or a way to modify how the partition reads the DATE Column?