赞
踩
误删数据后,在开启binlog的前提下,可以通过binlog恢复数据
truncate table bigdata.order_info
mysql> show binary logs;
+------------------+-----------+
| Log_name | File_size |
+------------------+-----------+
| mysql-bin.000001 | 2388774 |
+------------------+-----------+
1 row in set (0.00 sec)
grep定位'truncate table order_info的位置'
[root@zxy_master mysql]# mysql -uroot -p@Zhou147258369 -S ./mysql.sock -e "show binlog events in 'mysql-bin.000001'" | grep -i 'truncate table order_info'
mysql: [Warning] Using a password on the command line interface can be insecure.
mysql-bin.000001 1065653 Query 1 1065748 use `bigdata`; truncate table order_info
[root@zxy_master mysql]#
[root@zxy_master mysql]# mysqlbinlog -vv mysql-bin.000001 > ./mysql-binlog-222-06-12.log
在导出的mysql-binlog-222-06-12.log文件中找到truncate语句
start-position可以定义起始点
stop-position可以定义为结束点
将这个区间内的binlog导出到sql语句中
mysqlbinlog --start-position=4 --stop-position=1065557 -vv mysql-bin.000001 > mysql-dump-binlog-2022-06-12.log
从mysql-dump-binlog-2022-06-12.log中摘选出指定表的相关语句,从而进行恢复
[root@zxy_master mysql]# grep -A16 -w 'INSERT INTO `bigdata`.`user_info`' mysql-dump-binlog-2022-06-12.sql > user_info.sql
grep -An -Bn filename 操作是跟行有关的
1.grep -A1 keyword filename
找出filename中带有keyword的行,除该行输出外,还显示之后的一行
2.grep -B1 keyword filename
找出filename中带有keyword的行,除该行输出外,还显示之前的一行
3.grep -A1 -B2 keyword filename
找出filename中带有keyword的行,除该行输出外,还显示之前的两行和之后的一行
4.grep -1 keyword filename
找出filename中带有keyword的行,除该行输出外,还显示之前的一行和之后的一行
vim user_info.sql
### INSERT INTO `bigdata`.`user_info`
### SET
### @1=1 /* LONGINT meta=0 nullable=0 is_null=0 */
### @2='gykkr7' /* VARSTRING(600) meta=600 nullable=1 is_null=0 */
### @3='阿鸣' /* VARSTRING(600) meta=600 nullable=1 is_null=0 */
### @4=NULL /* VARSTRING(600) meta=600 nullable=1 is_null=1 */
### @5='乐鸣' /* VARSTRING(600) meta=600 nullable=1 is_null=0 */
### @6='13612294317' /* VARSTRING(600) meta=600 nullable=1 is_null=0 */
### @7='gykkr7@263.net' /* VARSTRING(600) meta=600 nullable=1 is_null=0 */
### @8=NULL /* VARSTRING(600) meta=600 nullable=1 is_null=1 */
### @9='1' /* VARSTRING(600) meta=600 nullable=1 is_null=0 */
### @10='1982:03:30' /* DATE meta=0 nullable=1 is_null=0 */
### @11='M' /* VARSTRING(3) meta=3 nullable=1 is_null=0 */
### @12='2022-03-30 14:34:25' /* DATETIME(0) meta=0 nullable=1 is_null=0 */
### @13=NULL /* DATETIME(0) meta=0 nullable=1 is_null=1 */
### @14=NULL /* VARSTRING(600) meta=600 nullable=1 is_null=1 */
# at 380500
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。