Hi Everyone,
I have a table which has a partition by a date field as it follows:
PARTITION BY RANGE_N(RestoreDate BETWEEN DATE '2008-04-01' AND DATE '2012-12-31' EACH INTERVAL '1' DAY , NO RANGE);
And I would like to extend the partition, so the RestoreDate would start from '2005-01-01' to '2013-12-31', How can I achieve this? Do I need to recreate the table? Do I need to drop the partition first and then create the new one? Any suggestions?
Thanks in advance!
Forums: