InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is not a kind of MySQL backup?(a) File backups(b) CSV backups(c) SQL backups(d) Table backupsThis question was posed to me in examination.This is a very interesting question from Web Performance Optimization topic in section HTML Images & Web Page Files of HTML |
|
Answer» CORRECT option is (d) Table backups To EXPLAIN: There are various backups in MySQL. File backups, SQL backups, backing up from a slave, CSV backups, INCREMENTAL backups are some kind of backups. File backup is the backup of MySQL database which creates a copy of FILES from MySQL DATA directory. SQL backups are alternate to File backups. |
|