MySQL replication: temporarily prevent specific SQL statements replicating to the slaves? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T07:42:14Zhttp://stackoverflow.com/feeds/question/355202http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/355202/mysql-replication-temporarily-prevent-specific-sql-statements-replicating-to-the0MySQL replication: temporarily prevent specific SQL statements replicating to the slaves?Nautical2008-12-10T06:07:34Z2008-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#3552682Answer by derobert for MySQL replication: temporarily prevent specific SQL statements replicating to the slaves?derobert2008-12-10T06:42:36Z2008-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>