InterviewSolution
Saved Bookmarks
| 1. |
Replication does not enable data from one MySQL database server to be copied to one or more MySQL database servers.(a) True(b) FalseI got this question in an online interview.This is a very interesting question from String Data Types in chapter Data Type Reference, Operators and Functions of MySQL |
|
Answer» CORRECT CHOICE is (B) False Best explanation: REPLICATION enables data from ONE MySQL database server (the master) to be copied to one or more MySQL database servers (the slaves). Replication is asynchronous by default. |
|