Hope that some one can give me a hint here.
I have a mysql (Inno) database with multiple tables related between them by foreign keys.
My database has several Gigabytes of data now.
What I need to accomplish is: backup my actual database (ok mysqldump will take care of that for me), and I want to """clean""" the database and add only the data for the last month (for example), maintaining the integrity of all the rows that I want to restore. That is, imagine tables 1,2,3,4,5 (I have about 50):
Tables 1 and 2 have new rows every minute, table 3 is a "configuration" table that feeds (via foreign key in) tables 1 and 2, and tables 4 and 5 (these are not """configuration/base""" tables) are related by tables 1 and 2.
Ok, I understand that I have to restore all my "configuration/base" tables and contained rows in order to assure integrity of related "dependent" tables and to be possible to use those configured values.
But, how do I keep only the last month of every other table rows maintaining full integrity of the restored rows?
I thought in scripting something allied with the possible use of mysql binary logs.
All of my "id" fields are auto-increment and at any time I should be able to restore the complete database (in meltdown cases, or for "big picture" study/mining).
Thanks a million for any help given!