关于mysql:数据库误操作数据恢复

44次阅读

共计 1546 个字符,预计需要花费 4 分钟才能阅读完成。

前提

mysql 必须有以下配置

binlog_format = row
binlog_row_image = full # 默认是 full

实战

假如有一张用户表,构造如下

create table tb_user
(
    id       bigint primary key not null auto_increment,
    username varchar(100)       not null,
    pwd      varchar(100)       not null,
    sex      varchar(10)        not null
);

数据 sql 如下:

insert into tb_user (username, pwd, sex)
values ('张三', '123456', '男'),
       ('李四', '111111', '女'),
       ('kk', '1111', '鸡');

小明一天不小心执行了 delete 全表的操作

delete from tb_user where id != 0;

把数据全副删除了

生成回滚 sql

小明都想好跑路的国家了,小董出手相助,祭出明天要介绍的工具 ra,github 地址:https://github.com/DHBin/ra

下载地址:https://github.com/DHBin/ra/tags

 数据库工具
反对 binlog 数据闪回、binlog 转 sql 等等

反对 mysql 数据库版本:5.5.x
5.6.x
5.7.x
8.0.x

Usage:
  ra [command]

Available Commands:
  flashback   数据闪回
  help        Help about any command
  tosql       通过 binlog 日志生成 sql

Flags:
  -h, --help      help for ra
  -v, --version   version for ra

Use "ra [command] --help" for more information about a command.

步骤一:查看以后的 binlog 文件名

show binary logs;
+----------------+---------+---------+
|Log_name        |File_size|Encrypted|
+----------------+---------+---------+
|mysql-bin.000010|7627     |No       |
|mysql-bin.000011|6699     |No       |
+----------------+---------+---------+

删除的 binlog 个别在最初的 binlog 文件中,mysql-bin.000011。依据小明的形容,过后操作的工夫大略是 2023-04-26 08:41

步骤二:应用 ra 生成回滚 sql

依据形容失去两个要害的信息

  • binlog 文件名
  • 操作工夫

把工夫范畴圈在 41 分

ra flashback --host 127.0.0.1 -u root -p 123456  --start-datetime "2023-04-26 08:41:00" --stop-datetime "2023-04-26 08:42:00"

执行后生成回滚 sql

insert into `test`.`tb_user` (id, username, pwd, sex) values(1, '张三', '123456', '男'); # pos 5726 timestamp 1682469713
insert into `test`.`tb_user` (id, username, pwd, sex) values(2, '李四', '111111', '女'); # pos 5726 timestamp 1682469713
insert into `test`.`tb_user` (id, username, pwd, sex) values(3, 'kk', '1111', '鸡'); # pos 5726 timestamp 1682469713

事件就是这样,小明不必跑路了,请小董喝了一瓶冰红茶。

正文完
 0