MySQL Forums
Forum List  »  Partitioning

Re: make number of partitions variable
Posted by: Phil Hildebrand
Date: May 30, 2008 08:14PM

Oh - and don't forget the max # partitions/table (1024)...

So, every quarter or something, you'd probably want to merge partitions that are older:

alter table herearetheticks
reorganize partition "p_2008-05-30" , "p_2008-05-31"
into ( partition p_2008_q3 values less than (733558));

or something like that...

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: make number of partitions variable
2821
May 30, 2008 08:14PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.