和昨天介紹的MySQL之delete 忘加where條件誤刪除恢復的mysql的環境條件是同樣的:
mysql數據庫指定字符集位utf8,同時表的字符集也得爲utf8,同時mysql要開啓row模式的bin-log日誌mysql
建立一張測試表測試:git
create table MyClass( id int(4) not null primary key auto_increment, name char(20) not null, sex varchar(10) not null default '0', degree varchar(10) not null );
插入數據:sql
insert into myclass (id,name,sex,degree) values (21,'小王','男','學士'); insert into myclass (id,name,sex,degree) values (22,'小花','女','學士'); insert into myclass (id,name,sex,degree) values (23,'小李','女','碩士'); insert into myclass (id,name,sex,degree) values (24,'王雪','女','碩士'); insert into myclass (id,name,sex,degree) values (25,'小強','男','博士'); MySQL [zixun3]> select * from myclass; +----+--------+-----+--------+ | id | name | sex | degree | +----+--------+-----+--------+ | 20 | 張三 | 男 | 學士 | | 21 | 小王 | 男 | 學士 | | 22 | 小花 | 女 | 學士 | | 23 | 小李 | 女 | 碩士 | | 24 | 王雪 | 女 | 碩士 | | 25 | 小強 | 男 | 博士 | +----+--------+-----+--------+ 6 rows in set (0.00 sec)
查看binlog位置點:數據庫
MySQL [zixun3]> show master status\G *************************** 1. row *************************** File: mysql-bin.000037 Position: 1803 Binlog_Do_DB: Binlog_Ignore_DB: Executed_Gtid_Set: 1 row in set (0.00 sec)
從二級制binlog日誌文件中導出DELETE誤操做的sql語句ide
/usr/local/mysql/bin/mysqlbinlog --no-defaults --base64-output=decode-rows -v -v /data/mysql/data/mysql-bin.000037|sed -n '/### DELETE FROM `zixun3`.`myclass`/,/COMMIT/p' >/tmp/delete.txt
sql語句內容以下:學習
[root@git-server ~]# cat /tmp/delete.txt ### DELETE FROM `zixun3`.`myclass` ### WHERE ### @1=20 /* INT meta=0 nullable=0 is_null=0 */ ### @2='張三' /* STRING(60) meta=65084 nullable=0 is_null=0 */ ### @3='男' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### @4='學士' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### DELETE FROM `zixun3`.`myclass` ### WHERE ### @1=21 /* INT meta=0 nullable=0 is_null=0 */ ### @2='小王' /* STRING(60) meta=65084 nullable=0 is_null=0 */ ### @3='男' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### @4='學士' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### DELETE FROM `zixun3`.`myclass` ### WHERE ### @1=22 /* INT meta=0 nullable=0 is_null=0 */ ### @2='小花' /* STRING(60) meta=65084 nullable=0 is_null=0 */ ### @3='女' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### @4='學士' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### DELETE FROM `zixun3`.`myclass` ### WHERE ### @1=23 /* INT meta=0 nullable=0 is_null=0 */ ### @2='小李' /* STRING(60) meta=65084 nullable=0 is_null=0 */ ### @3='女' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### @4='碩士' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### DELETE FROM `zixun3`.`myclass` ### WHERE ### @1=24 /* INT meta=0 nullable=0 is_null=0 */ ### @2='王雪' /* STRING(60) meta=65084 nullable=0 is_null=0 */ ### @3='女' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### @4='碩士' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### DELETE FROM `zixun3`.`myclass` ### WHERE ### @1=25 /* INT meta=0 nullable=0 is_null=0 */ ### @2='小強' /* STRING(60) meta=65084 nullable=0 is_null=0 */ ### @3='男' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ ### @4='博士' /* VARSTRING(30) meta=30 nullable=0 is_null=0 */ # at 428 #180517 18:30:08 server id 1 end_log_pos 459 CRC32 0x29e84ce6 Xid = 8 COMMIT/*!*/;
而後經過sed命令替換字符串進行拼接的方式,把原來的delete語句轉換成insert 語句測試
cat /tmp/delete.txt | sed -n '/###/p' | sed 's/### //g;s/\/\*.*/,/g;s/DELETE FROM/INSERT INTO/g;s/WHERE/SELECT/g;' | sed -r 's/(@5.*),/\1;/g' | sed 's/@[1-5]=//g' > /tmp/test.txt [root@git-server ~]# cat /tmp/test.txt INSERT INTO `zixun3`.`myclass` SELECT 20 , '張三' , '男' , '學士' ; INSERT INTO `zixun3`.`myclass` SELECT 21 , '小王' , '男' , '學士' ; INSERT INTO `zixun3`.`myclass` SELECT 22 , '小花' , '女' , '學士' ; INSERT INTO `zixun3`.`myclass` SELECT 23 , '小李' , '女' , '碩士' ; INSERT INTO `zixun3`.`myclass` SELECT 24 , '王雪' , '女' , '碩士' ; INSERT INTO `zixun3`.`myclass` SELECT 25 , '小強' , '男' , '博士' ;
登陸mysql導入數據url
use zixun3; 直接導入 source /tmp/test.txt MySQL [zixun3]> select * from myclass; +----+--------+-----+--------+ | id | name | sex | degree | +----+--------+-----+--------+ | 20 | 張三 | 男 | 學士 | | 21 | 小王 | 男 | 學士 | | 22 | 小花 | 女 | 學士 | | 23 | 小李 | 女 | 碩士 | | 24 | 王雪 | 女 | 碩士 | | 25 | 小強 | 男 | 博士 | +----+--------+-----+--------+ 6 rows in set (0.00 sec)
固然此種sed命令拼接的方式也是一種思路,可是上述的這種方式的恢復,也只適合表結構字段都是基本的簡單的字段的表進行恢復數據,並不適合複雜的表結構的數據的恢復日誌
下面是表字段中含有url連接內容的恢復數據的命令code
/usr/local/mysql/bin/mysqlbinlog --no-defaults --base64-output=decode-rows -v -v /data/mysql/data/mysql-bin.000038|sed -n '/### DELETE FROM `zhangyou`.`dede_uploads`/,/COMMIT/p' >/tmp/delete.txt cat /tmp/delete.txt | sed -n '/###/p' | sed 's/### //g;s/\/\*.*/,/g;s/DELETE FROM/INSERT INTO/g;s/WHERE/SELECT/g;' | sed -r 's/(@11.*),/\1;/g' | sed 's/@[1-9]=//g;s/@10=//g;s/@11=//g;' > /tmp/test11.txt
提示:@11表明恢復數據表的表字段的個數
*提示:下面的代碼纔是通用的delete刪除數據時進行恢復的正確語句,經本人測試,再複雜的表結構,只要delete誤刪除數據後,採用下面的命令語句是徹底能夠恢復的。可是須要注意的是sed -r 's/(@11.),/\1;/g'中的@數字,必須是表的字段的個數**
/usr/local/mysql/bin/mysqlbinlog --no-defaults --base64-output=decode-rows -v -v /data/mysql/data/mysql-bin.000038|sed -n '/### DELETE FROM `zhangyou`.`dede_uploads`/,/COMMIT/p' >/tmp/delete.txt cat /tmp/delete.txt | sed -n '/###/p' | sed 's/### //g;s/\/\*.*/,/g;s/DELETE FROM/INSERT INTO/g;s/WHERE/SELECT/g;' | sed -r 's/(@11.*),/\1;/g' | sed 's/@\([0-9]\+\)=//g;' >>/tmp/2.txt
重要提示:上述的數據庫數據的的恢復命令僅僅是本人本身應用環境測試的結果,不表明網友的環境就必定能夠直接套用,使用前必定多測試,不建議直接在本身的生產環境套用,博主發表此博文僅是共網友參考學習,若有套用形成損失的和本博文無關。