SET sql_log_bin = 0;
and all queries on your current session will not be sent to the binary log. If you want to turn binary logging back on, run:SET sql_log_bin = 1;
This is only for the currently running session you are in. All other
queries from all other connections will still continued to be logged.
Also, you must have SUPER privileges for this to work
No comments:
Post a Comment