Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Periodic management of Oracle10g partitions!
It seems that you are trying to limit yourself to these three
partitions for some reason. It would make more sense to me if you had a
series of monthly partitions like ...
partition by range (my_date)
(
Y2005_M01 values less than (to_date('01-feb-2005','YY-mon-YYYY')), Y2005_M02 values less than (to_date('01-mar-2005','YY-mon-YYYY')), Y2005_M03 values less than (to_date('01-apr-2005','YY-mon-YYYY')), Y2005_M04 values less than (to_date('01-may-2005','YY-mon-YYYY')), Y2005_M05 values less than (to_date('01-jun-2005','YY-mon-YYYY')),...
Is there a reason why this would not be suitable? Received on Tue Jan 18 2005 - 14:26:39 CST