Let's say I have a table:
CREATE TABLE list_hash_tab (
id NUMBER,
code VARCHAR2(10),
description VARCHAR2(50),
START_date DATE,
END_DATE DATE
);
I would like to have Interval-Interval composite partitioning, i.e., interval partitioning on START_DATE and Interval subpartition on END_DATE.
Appreciate anyones help.
I am using Oracle 11g.