InterviewSolution
Saved Bookmarks
| 1. |
What is SBR replication?(a) Statement based(b) Row based(c) Column based(d) Table basedI have been asked this question by my school principal while I was bunking the class.My question is taken from String Data Types topic in division Data Type Reference, Operators and Functions of MySQL |
|
Answer» RIGHT answer is (a) Statement based To elaborate: There are two MAIN KINDS of replication format: Statement Based Replication (SBR) replicates entire SQL statements and ROW Based Replication (RBR) replicates only the changed rows. |
|