InterviewSolution
Saved Bookmarks
| 1. |
Where does MySQL Enterprise Backup record details of each backup?(a) history_backup(b) backup_history(c) backlog_history(d) history_backlogThe question was posed to me in unit test.Question is taken from Using Backups for Data Recovery in division Database Maintenance, Backups and Replication of MySQL |
|
Answer» CORRECT option is (B) backup_history To explain I would say: The restored DATA includes the ‘backup_history’ table, where ‘MySQL Enterprise Backup’ records details of each backup. The table ALLOWS to PERFORM future incremental backups using ‘–incremental-base=history:last_backup’. |
|