MySQL replication: temporarily prevent specific SQL statements replicating to the slaves? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T07:42:14Z http://stackoverflow.com/feeds/question/355202 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/355202/mysql-replication-temporarily-prevent-specific-sql-statements-replicating-to-the 0 MySQL replication: temporarily prevent specific SQL statements replicating to the slaves? Nautical 2008-12-10T06:07:34Z 2008-12-10T06:42:36Z <p>I want to connect and execute one (or sometimes several) SQL statements, and NOT have those replicated to the slaves.</p> <p>I have no replicate-do or replicate-ignore configs, so I can't <code>use</code> some non-replicated database to send the commands from. And I know about:</p> <pre><code>set global sql_slave_skip_counter = 1 </code></pre> <p>But that's on the slave. I'd like to be able to run a similar command on the master and have the following N commands not sent out to the slaves (which I guess means not logged in the binlogs, either).</p> http://stackoverflow.com/questions/355202/mysql-replication-temporarily-prevent-specific-sql-statements-replicating-to-the/355268#355268 2 Answer by derobert for MySQL replication: temporarily prevent specific SQL statements replicating to the slaves? derobert 2008-12-10T06:42:36Z 2008-12-10T06:42:36Z <p><code>SET sql_log_bin=0</code> is what you're looking for. Requires SUPER priv., and will turn off logging of commands from your session until you set it back to 1. See <a href="http://dev.mysql.com/doc/refman/5.0/en/server-session-variables.html#sysvar_sql_log_bin" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/server-session-variables.html#sysvar_sql_log_bin</a></p> <pre><code>SET sql_log_bin=0; UPDATE ... ; INSERT ... ; DELETE ... ; SET sql_log_bin=1 ; </code></pre>