InterviewSolution
Saved Bookmarks
| 1. |
How is the binary log rotated?(a) FLUSH LOGS(b) ROTATE LOGS(c) FLUSH BINLOG(d) ROTATE BINLOG |
|
Answer» The correct answer is (a) FLUSH LOGS Easy explanation: MySQL supports incremental backups. The server should be started with the ‘–log-bin’ option to enable binary logging. The binary log files provide information to replicate changes to the database. |
|