Tagged Questions
The binlog tag has no wiki summary.
6
votes
6answers
6k views
MySQL Binary Log Replication: Can it be set to ignore errors?
I'm running a master-slave MySQL binary log replication system (phew!) that, for some data, is not in sync (meaning, the master holds more data than the slave). But the slave stops very frequently on ...
5
votes
3answers
849 views
Binlog MySQL Replication is a “Bag of Hurt”. Are there any good alternatives?
I've honestly tried this left and right and still find that my mirror server, set up as a replication slave still lags behind. My app's user base keeps growing and now Ive reached the point where I ...
1
vote
2answers
393 views
Searching MySQL Bin Log for a Query
Is it possible to query the mysql bin log for a particular query? For example, suppose I want to know if anyone in the last hour did a specific query (like 'Update tableX where userName = 'bob'"). I ...
1
vote
1answer
183 views
How to get all the MySQL binlog event info using T-SQL
I am researching the possibility to log all the changes made to a MySQL database including DDL statements that may occur and use that information so it can be synchronized with a remote database.
The ...
1
vote
3answers
594 views
How can I use the TRUNCATE sentence avoiding MySql to write it into the binlog?
It seems MySQL does not support the flag "NO_ WRITE_ TO_ BINLOG" for TRUNCATE. So I have to wait until delay is 0, then stop the replication, make the TRUNCATE of the table/s, reset the master, and ...
0
votes
0answers
30 views
About parsing MySQL binary log
I want to parse MySQL binlog by myself , and I veiwed the source code of mysql official mysql-replication-listener (a library of mysql official for parsing binlog) . And found that it is not ...
0
votes
0answers
22 views
Is there any way to query TimeBetweenEpochs and TimeBetweenGlobalCheckpoints configuration variables?
I want to access the configuration variables TimeBetweenEpochs and TimeBetweenGlobalCheckpoints present in the NDBD configuration file from a database query. Is it possible? If it's not possible to do ...
0
votes
0answers
45 views
mydumper not showing binary log positions
I am using mydumper (mysql backup tool) on a few servers, just recently I deployed it with strange results.
When mydumper runs it creates a file called .metadata or metadata (depending on the ...
0
votes
0answers
130 views
MySQL stored functions and binary log
I received this exception during running Java code [MySQL-server-5.5.8-1 in RHEL6]:
java.sql.SQLException: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and ...
0
votes
3answers
134 views
SQL Server differential backup to SQL statements
Is there any way to convert differential backup to SQL statements which will produce identical results when applied?
Or any other solution similar to binary log in MySQL?
0
votes
1answer
116 views
What is binlog in mysql?
I've set mysql parameter innodb_flush_log_at_trx_commit=0. It means that mysql flushes transactions to HDD 1 time per second. Is it true that if mysql will fail with this flush (because of power off) ...