InterviewSolution
Saved Bookmarks
| 1. |
Which statement suspends the replication related activity of the slave server?(a) RESUME SLAVE(b) START SLAVE(c) STOP SLAVE(d) GET SLAVEI got this question by my school teacher while I was bunking the class.My question is taken from Setting Up Replication Servers topic in section Database Maintenance, Backups and Replication of MySQL |
|
Answer» CORRECT option is (c) STOP SLAVE The EXPLANATION is: The ‘STOP SLAVE’ and ‘START SLAVE’ statements SUSPEND and resume the replication-related activity of a slave server. These statements are useful for telling the slave to be quiescent. |
|