InterviewSolution
Saved Bookmarks
| 1. |
The program that performs logical backups is _____________(a) mysqlimport(b) mysqldump(c) myslqpit(d) mysqllogic |
|
Answer» The correct choice is (b) mysqldump The best I can explain: The ‘mysqldump’ performs logical backups. It produces a set of SQL statements that are executed to reproduce the original database object definitions. It dumps one or more MySQL databases for backup. |
|