Hi All,
I am looking for ways to create a Global Index on Interval partitioned table I have looked up over internet but did not found any helpful document about it.
Below is the partitioning Key which we have defined on table.
PARTITION BY RANGE ("DATE_SITU") INTERVAL (NUMTODSINTERVAL(1,'DAY'))
(PARTITION "PART_10_OCT_2014_MVT_HBFR_H" VALUES LESS THAN (TO_DATE(' 2014-10-11 00:00:00', 'SYYYY-MM-DD HH24:MI:SS', 'NLS_CALENDAR=GREGORIAN'))
and the table has more than at present 57 partitions on it.
I am doing this activity in order to check the tuning option for refresh of a MVIEW as it is taking time and DBA suggested me to try Global index.
Please let me know if more information is required from me.