Skip duplicate entries for replication queries
Snippet
Yeah, kitt finished writing this at 09:43 on 7 December 2009
If a conflicting query occurs on a slaved database, and it's okay to skip that query, use the SQL_SLAVE_SKIP_COUNTER setting.
STOP SLAVE; SET GLOBAL SQL_SLAVE_SKIP_COUNTER = N; START SLAVE;
Add new comment