InterviewSolution
Saved Bookmarks
| 1. |
Which program reads the statement from a binary log?(a) mysql_config(b) mysqlbinlog(c) mysqldump(d) mysqlimportI had been asked this question during an internship interview.This question is from MySQL Programs topic in chapter MySQL Programming of MySQL |
|
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. |
|