Dynamic Partition Table
Hi, I'm try to define a dynamic DATE partition table with 3 partitions as follow:
1st partition must contain records for date>=sysdate-1 (yesterday and today)
2nd partition must contain records for date>=trunc(add_months(sysdate-1,-1),'mm') and date<=sysdate-1 (Last month and present month except yesterday and today)
3rd partition must contain records for date<trunc(add_months(sysdate-1,-1),'mm')
This is under Oracle EE 10g on ETL enviroment
Any idea??
Thanks in advance
Alfredo