You may already know that when the mysqldump client utility performs logical backups, it produces a set of SQL statements that you can execute to reproduce the original database object definitions and table data.
Although it dumps one or more MySQL databases for backup or transfer to another SQL server, there are 5 things that you may overlook with MySQL dumps.
Here I’ve discussed 5 things you shouldn’t overlook with MySQL dumps. Let’s explore them below.
5 Things You Need to Concentrate About MySQL Dumps
Here are the five things you may overlook with MySQL dumps:
- Point In Time Recovery
If you’ve never done point in time recovery, it’s time to take a second look. With a standard mysqldump you restore your database to the time when the backup happened. Only do them once a day, then you can lose as much as 24 hours of data.
Enter point-in-time recovery, and you …
[Read more]