目录问题1、首先 查看数据库的binlog日志2、经查 binlog.000001并没有数据操作3、将binlog.0000024、找一台本地mysql的环境(linux)5、重放binlog.000003中的部分6、start-postion,stop-position获取7、核对数据总结
如果想通过 mysql 的 binlog 恢复数据,首先要开启 binlog 。这里搭建一个测试的环境,了解一下 mysql binlog 是如何恢复数据库的。原理比较简单,binlog 会存储mysql中变化的数据,比如你创建了一个开发者_NewSQL数
this is my code: def a(): print \'sss\' @a() def b(): print \'aaa\' b() and the Tracebackis: sss Traceback (most recent call last):