View Full Version : Database replications


Andrew Green
01-15-2006, 09:46 PM
http://www.howtoforge.com/mysql_database_replication

This tutorial describes how to set up database replication in MySQL. MySQL replication allows you to have an exact copy of a database from a master server on another server (slave), and all updates to the database on the master server are immediately replicated to the database on the slave server so that both databases are in sync. This is not a backup policy because an accidentally issued DELETE command will also be carried out on the slave; but replication can help protect against hardware failures though.

Useful info here :)

at least it might be for anyone running a large database...

BlueDragon1981
01-15-2006, 11:50 PM
Yes that is useful. ... I think i may be visiting or referring people to that link.

Silent Bob
01-16-2006, 01:08 AM
This could come in handy....danke!