I don't know if any sofware like you want exists, because I don't know of MySQL provides that functionality.
One trick, just off the top of my head, is to add a timestamp column to every table against which you want to perform incremental backups.
Then perform a "SELECT...INTO OUTFILE...WHERE..." query and use the WHERE clause to output all records for which the timestamp column is later than a certain date.
You can then backup the files created by MySQL. It shouldn't be too hard to automate something like this.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.