mysql 誤刪除表內資料,透過binlog日誌恢復
#新增資料
insert into testdb1.student(id,name,class,score) value(a,'a',1,45),(2,'b',1,46),(3,'c',2,89),(4,'d',2,90),(5,'e',3,67),(6,'f',3,87),(7,'g',4,77),(8,'h',4,91);
mysql> select * from testdb1.student;
+------+------+-------+-------+
| id | name | class | score |
+------+------+-------+-------+
| 1 | a | 1 | 45 |
| 2 | b | 1 | 46 |
| 3 | c | 2 | 89 |
| 4 | d | 2 | 90 |
| 5 | e | 3 | 67 |
| 6 | f | 3 | 87 |
| 7 | g | 4 | 77 |
| 8 | h | 4 | 91 |
+------+------+-------+-------+
8 rows in set (0.00 sec)
#刪除資料
mysql> delete from testdb1.student;
Query OK, 8 rows affected (0.00 sec)
mysql> commit;
Query OK, 0 rows affected (0.00 sec)
mysql> show master status\G
*************************** 1. row ***************************
File: ray-bin.000004
Position: 5444
Binlog_Do_DB:
Binlog_Ignore_DB:
Executed_Gtid_Set:
1 row in set (0.00 sec)
[root@localhost ~]# mysqlbinlog /data/3306/logs/ray-bin.000004 -v -v -S /data/3306/soket/mysql.sock --base64-output=decode-rows | sed -n '/### DELETE FROM `testdb1`.`student`/,/COMMIT/P' | sed -n 's\### \\p' | sed "s/\/\*.*\*\///g" | sed 's/`//g' > /tmp/1.txt
[root@localhost ~]# sed 's/DELETE FROM/insert into/g' /tmp/1.txt | sed 's/WHERE/select/g' | sed 's/@4.*/\0;/g' | sed 's/@[1-3].*/\0,/g' | sed 's/[^@]\(.*\)=//g' > execSQL.sql
要點:
sed 's/@4.*/\0;/g' 把@4後面匹配所有字元所有長度,替換,在匹配的後面新增。\0代表整行;
sed 's/@[1-3].*/\0,/g' 把@後面從1到3匹配,在匹配後面所有字元所有長度,在匹配項後面新增逗號。\0代表整行。
sed 's/[^@]\(.*\)=//g' 把已@開頭的到=以內的內容替換
mysql> source /root/execSQL.sql
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
Query OK, 1 row affected (0.00 sec)
Records: 1 Duplicates: 0 Warnings: 0
mysql> commit;
Query OK, 0 rows affected (0.01 sec)
mysql> select * from testdb1.student;
+------+------+-------+-------+
| id | name | class | score |
+------+------+-------+-------+
| 1 | a | 1 | 45 |
| 2 | b | 1 | 46 |
| 3 | c | 2 | 89 |
| 4 | d | 2 | 90 |
| 5 | e | 3 | 67 |
| 6 | f | 3 | 87 |
| 7 | g | 4 | 77 |
| 8 | h | 4 | 91 |
+------+------+-------+-------+
8 rows in set (0.00 sec)
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29734436/viewspace-2152512/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- MySQL通過Binlog恢復刪除的表MySql
- MySQL 透過 binlog 恢復資料MySql
- 利用binlog日誌恢復mysql資料MySql
- MySQL--binlog日誌恢復資料MySql
- 【Mysql】如何透過binlog恢復資料MySql
- MySQL資料庫表誤刪除恢復(一)MySql資料庫
- mysql binlog日誌刪除MySql
- 【北亞資料恢復】誤刪除oracle表和誤刪除oracle表資料的資料恢復方法資料恢復Oracle
- 利用日誌挖掘 oracle 不完全恢復 恢復誤刪除的表/資料/檢視等Oracle
- MySQL 正確刪除 binlog 日誌MySql
- Mysql之binlog日誌說明及利用binlog日誌恢復資料操作記錄MySql
- mysql誤刪資料恢復MySql資料恢復
- MySQL 通過 binlog 恢復資料MySql
- oracle恢復誤刪除資料Oracle
- MySQL二進位制日誌刪除與恢復MySql
- 通過binlog恢復mysql資料庫MySql資料庫
- 【EM】資料表誤刪除故障模擬及恢復
- Oracle閃回刪除恢復誤刪資料Oracle
- 教你自動恢復MySQL資料庫的日誌檔案(binlog)MySql資料庫
- mysql誤修改全表記錄,使用binlog日誌找回資料MySql
- MySQL使用mysqldump+binlog完整恢復被刪除的資料庫(轉)MySql資料庫
- Mysql 誤刪資料進行恢復MySql
- Flashback Query恢復誤刪除資料(轉)
- mysql資料庫誤刪除後的資料恢復操作說明MySql資料庫資料恢復
- MySQL 資料庫誤刪除後的資料恢復操作說明MySql資料庫資料恢復
- 如何安全刪除mysql下的binlog日誌薦MySql
- oracle redo 日誌刪除後的恢復Oracle Redo
- Oracle-誤刪資料恢復(短期內)Oracle資料恢復
- 備份與恢復系列 六 日誌挖掘(Log Miner)找到誤刪除表的SCN
- Sybase ASE資料庫恢復,Sybase資料恢復,資料誤刪除恢復工具READSYBDEVICE資料庫資料恢復dev
- 誤刪除資料了怎麼辦?小編交易誤刪除資料的恢復方法
- mysql binlog日誌自動清理及手動刪除MySql
- Oracle恢復誤刪除的資料檔案Oracle
- truncate table 誤刪除資料後的恢復
- 誤刪除儲存SqlServer資料庫資料恢復SQLServer資料庫資料恢復
- DB2 恢復誤刪除的表DB2
- 透過控制程式碼檔案恢復linux下誤刪除的資料檔案Linux
- MySQL重做日誌恢復資料的流程MySql