今天就跟大家聊聊有关mysql闪回flashback-5.7的示例分析,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
1.首先确认误操作的位置
2.使用工具闪回
-
[root@Yun-MySQL02 lib64]#/soft/mysqlbinlog -vv –start-position=331 -B –skip-gtids /databak/3306/mysql-bin.000043|/usr/local/mysql/bin/mysql -uroot -p`cat /etc/sqlpass ` -P3306 -h227.0.0.1 test
-
—如果开启了gtid的最好使用skip-gtids 不然会报错
[root@Yun-MySQL02 lib64]# /usr/local/mysql/bin/mysql -uroot -p`cat /etc/sqlpass ` -P3306 -h227.0.0.1 test<re.sql
mysql: [Warning] Using a password on the command line interface can be insecure.
ERROR 1782 (HY000) at line 11: @@SESSION.GTID_NEXT cannot be set to ANONYMOUS when @@GLOBAL.GTID_MODE = ON.
如果报
/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.15' not found
另外一个工具 binlog2sql
https://github.com/danfengcao/binlog2sql
-
binlog2sql 的一些改进:
-
在测试时–stop-never在qa环境没有作用,添加了在 BinLogStreamReader 实例里面加入 blocking=True 来保证源源不断的接受binlog而不中断。
-
另外也加入了更改目标库名的功能,比如原库叫d_my1,生成的sql目标库名是 d_my2 。
看完上述内容,你们对mysql闪回flashback-5.7的示例分析有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。
原创文章,作者:carmelaweatherly,如若转载,请注明出处:https://blog.ytso.com/204461.html