I have a mysql database table that I want to partition by date, particularly by month & year. However, when new data is added for a new month, I don't want to need to manually update the database.
When I initially create my database, I have data in Nov 09, Dec 09, Jan 10, etc. Now when February starts, I'd like a Feb 10 partition automatically created. Is this possible?
To give a little more background on my problem, there could be several hundred thousand records per day added to the DB, so I'm also open to other solutions other than partitioning to avoid querying millions of records per day.
Thanks, Jeff