InterviewSolution
Saved Bookmarks
| 1. |
Which program reads the statement from a binary log?(a) mysql_config(b) mysqlbinlog(c) mysqldump(d) mysqlimport |
|
Answer» Correct answer is (b) mysqlbinlog The best I can explain: ‘mysqlbinlog’ is a utility program for reading statements from a binary log. The log of executed statements contained in the binary log files can be used to help recover from a crash. |
|