I am trying to make some normal /restorable backup of MySQL database. My problem is, that I only need to back up a single table, which was last created, or edited.
Is it possible to set mysqldump
to do that?
MySQL can find the last inserted table, but how can I include it in mysqldump
command? I need to do that without locking the table, and the database has partitioning enabled.