Hello,
I want to create a partition on a VARCHAR2(6) field (year + month), but our DBAs only want partition based on dates.
I tried the following:
CREATE table ...(
ACCPER VARCHAR2(6),
....
)
PARTITION by range (ACCPER)
(partition P200611 values less than (to_date('200612','YYYYMM')))
but I have a message ORA-14036 partition bound value too large for column.
Any ideas on how to do that ?
I want to create a partition on a VARCHAR2(6) field (year + month), but our DBAs only want partition based on dates.
I tried the following:
CREATE table ...(
ACCPER VARCHAR2(6),
....
)
PARTITION by range (ACCPER)
(partition P200611 values less than (to_date('200612','YYYYMM')))
but I have a message ORA-14036 partition bound value too large for column.
Any ideas on how to do that ?