Tagged Questions
The binary-log tag has no wiki summary.
7
votes
4answers
1k views
The ultimate MySQL legacy database nightmare
Table1:
Everything including the kitchen sink. Dates in the wrong format (year last so you cannot sort on that column), Numbers stored as VARCHAR, complete addresses in the 'street' column, firstname ...
3
votes
3answers
782 views
MySQL replication for fallback scenario
When I have two mysql servers that have different jobs (holding different databases) but want to be able to use one of them to slip in when the other one fails, what would you suggest how I keep the ...
2
votes
2answers
1k views
Is it safe to delete rotated MySQL binary logs?
I have a MySQL server with binary logging active. Once a days logs file is "rotated", i.e. MySQL seems to stop writing to it and creates and new log file. For example, I currently have these files in ...
2
votes
1answer
1k views
How do i run a query in MYSQL without writing it to the binary log
I want to run an import of a large file into MySQL. However, I don't want it written to the binary log, because the import will take a long time, and cause the slaves to fall far behind. I would ...
1
vote
2answers
22 views
Does MySQL binary log support logging Uid's?
I would like to know if it's possible using MySQL Binary Log to record Uid's (usernames) of the users who make modifications to the DB.
This is necessary for the audit purpose.
Is that possible?
1
vote
1answer
230 views
Mysql data recovery using mysqlbinlog
I accidentally dropped a schema without backing it up.
And now I want to use mysqlbinlog utility to perform recovery. (It seems that mysqlbinlog is a good tool). And it needs those binary log files ...
0
votes
1answer
19 views
MySQL binary log timestamps non sequential?
I do have a binary log dump here from MySQL 5.5.20 (row based). Now my slave stopped because the UPDATE event is before the INSERT event:
5424240-SET TIMESTAMP=1327402568/*!*/;
5424241-BEGIN
...
0
votes
2answers
271 views
how to exclude some tables from being binlogged in mysql?
I need to exclude some files from being logged in the binary log to avoid wasting my network bandwidth and time on replication of caching tables.
i know there is
[mysqld]
...
0
votes
2answers
152 views
MySQL query based replication
I wish to road-test a MySQL Cluster instance by passing it all query which are executed on InnoDB MySQL instance. I'm not too worried about data integrity on the Cluster at present, this study is ...