|
Replication is on the master all transactions are written to a log file which is sent to a file on the slave. The slave then processes those transactions. It normally is done quickly so if the master has a failure, you have all the information on a slave.
Using MySQL native replication, the table names will be the same. If you use a commercial product such as Golden Gate replication, you can have different table names on the master and slave.
|