Posted by joseph on February 18, 2012 ·
Supposed you have a table that being updated by MySQL triggers and the DB is a master of replication, how do the triggers act in the environment? Here we might have a list of questions:
Q1, Will the definition sql of the triggers be replicated?
Q2, Will the data manipulation sqls triggered by triggers [...]
Posted by joseph on March 9, 2010 ·
If you have binary logging enabled on your MySQL server (i.e. the log-bin parameter is set in the config file), then you may notice a bulk of large files in the MySQL data directory over time. Generally you only need to enable this binary logging if your server is acting as a relication master or if [...]
Posted by joseph on November 27, 2009 ·
Let’s keep this post smart. It’s intended to help you rebuild a crashed MySQL replication. We assume that bin-log has been enabled at the master side.
Basically what you need to do is to retrival a snapshot of your master database. It covers three types of information, a snapshot of your [...]
Posted by joseph on September 11, 2009 ·
If you set up MySQL replication, you probably have ever faced this problem. there are invalid MySQL queries which cause the replication not to work anymore. Here I’ll explain how you can repair the replication on MySQL slave without rebuilding the whole repication environment. There are two steps [...]