Hi,
Is it possible to create a partition by list and by range?
I am using Oracle 10G.
Thank you, Regards
BI DWH BALA
Hi,
Is it possible to create a partition by list and by range?
I am using Oracle 10G.
Thank you, Regards
BI DWH BALA
In 10g the only composite partitions available are range-list and range-hash (i.e. with range leading).
In 11g you can have range-list, range-hash, range-range, list-range, list-list, and list-hash.
You may be able to fake a list-range scheme in 10g by using a view on a set of tables UNION'd together and INSTEAD OF triggers to direct the DML to the right underlying table. However, that may be a bad idea for a number of reasons around maintainability.
No one has followed this question yet.