delete、update忘加where条件误操作恢复过程演示
update、delete没有带where条件,误操作,如何恢复呢?
我现在有一张学生表,我要把小于60更新成不及格。
mysql> select * from student; +----+------+-------+-------+ | id | name | class | score | +----+------+-------+-------+ | 1 | a | 1 | 56 | | 2 | b | 1 | 61 | | 3 | c | 2 | 78 | | 4 | d | 2 | 45 | | 5 | e | 3 | 76 | | 6 | f | 3 | 89 | | 7 | g | 4 | 43 | | 8 | h | 4 | 90 | +----+------+-------+-------+ 8 rows in set (0.02 sec)
结果,忘带where条件了,
mysql> update student set score='failure'; Query OK, 8 rows affected (0.11 sec) Rows matched: 8 Changed: 8 Warnings: 0 mysql> select * from student; +----+------+-------+---------+ | id | name | class | score | +----+------+-------+---------+ | 1 | a | 1 | failure | | 2 | b | 1 | failure | | 3 | c | 2 | failure | | 4 | d | 2 | failure | | 5 | e | 3 | failure | | 6 | f | 3 | failure | | 7 | g | 4 | failure | | 8 | h | 4 | failure | +----+------+-------+---------+ 8 rows in set (0.01 sec)
把整张表的记录都给更新成不及格了。
传统的方法是:利用最近的全量备份+增量binlog备份,恢复到误操作之前的状态,那么随着表的记录增大,binlog的增多,恢复起来很费时费力。
现在通过一个简单的方法,可以恢复到误操作之前的状态。
我的binlog日志设置为binlog_format = ROW,
首先,创建一个普通权限的账号(切记不能是SUPER权限),例如:
GRANT ALL PRIVILEGES ON yourDB.* TO 'admin_read_only'@'%' IDENTIFIED BY '123456'; flush privileges;
把read_only打开,设置数据库只读,
mysql> set global read_only = 1; Query OK, 0 rows affected (0.01 sec)
把刚才创建的admin_read_only账号给运维,让运维把前端程序(PHP/JSP/.NET等)的用户名改下,然后重启前端程序(PHP/JSP/.NET等),这样再连接进来的用户对数据库的访问只能读不能写,保证恢复的一致性。
通过binlog先找到那条语句
[root@M1 data]# /usr/local/mysql/bin/mysqlbinlog --no-defaults -v -v --base64-output=DECODE-ROWS mysql-bin.000001 | grep -B 15 'failure'| more /*!*/; # at 192 #121124 23:55:15 server id 25 end_log_pos 249 CRC32 0x83a12fbc Table_map: `test`.`student` mapped to number 76 # at 249 #121124 23:55:15 server id 25 end_log_pos 549 CRC32 0xcf7d2635 Update_rows: table id 76 flags: STMT_END_F ### UPDATE test.student ### WHERE ### @11=1 /* INT meta=0 nullable=0 is_null=0 */ ### @2='a' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=1 /* INT meta=0 nullable=1 is_null=0 */ ### @4='56' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @11=1 /* INT meta=0 nullable=0 is_null=0 */ ### @2='a' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=1 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### UPDATE test.student ### WHERE ### @1=2 /* INT meta=0 nullable=0 is_null=0 */ ### @2='b' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=1 /* INT meta=0 nullable=1 is_null=0 */ ### @4='61' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @1=2 /* INT meta=0 nullable=0 is_null=0 */ ### @2='b' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=1 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ --More--
然后把那条binlog给导出来
[root@M1 data]# /usr/local/mysql/bin/mysqlbinlog --no-defaults -v -v --base64-output=DECODE-ROWS mysql-bin.000001 | sed -n '/# at 249/,/COMMIT/p' > /opt/1.txt [root@M1 data]# [root@M1 data]# more /opt/1.txt # at 249 #121124 23:55:15 server id 25 end_log_pos 549 CRC32 0xcf7d2635 Update_rows: table id 76 flags: STMT_END_F ### UPDATE test.student ### WHERE ### @11=1 /* INT meta=0 nullable=0 is_null=0 */ ### @2='a' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=1 /* INT meta=0 nullable=1 is_null=0 */ ### @4='56' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @11=1 /* INT meta=0 nullable=0 is_null=0 */ ### @2='a' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=1 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### UPDATE test.student ### WHERE ### @1=2 /* INT meta=0 nullable=0 is_null=0 */ ### @2='b' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=1 /* INT meta=0 nullable=1 is_null=0 */ ### @4='61' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @1=2 /* INT meta=0 nullable=0 is_null=0 */ ### @2='b' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=1 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### UPDATE test.student ### WHERE ### @1=3 /* INT meta=0 nullable=0 is_null=0 */ ### @2='c' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=2 /* INT meta=0 nullable=1 is_null=0 */ ### @4='78' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @1=3 /* INT meta=0 nullable=0 is_null=0 */ ### @2='c' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=2 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### UPDATE test.student ### WHERE ### @1=4 /* INT meta=0 nullable=0 is_null=0 */ ### @2='d' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=2 /* INT meta=0 nullable=1 is_null=0 */ ### @4='45' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @1=4 /* INT meta=0 nullable=0 is_null=0 */ ### @2='d' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=2 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### UPDATE test.student ### WHERE ### @1=5 /* INT meta=0 nullable=0 is_null=0 */ ### @2='e' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @33=3 /* INT meta=0 nullable=1 is_null=0 */ ### @4='76' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @1=5 /* INT meta=0 nullable=0 is_null=0 */ ### @2='e' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @33=3 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### UPDATE test.student ### WHERE ### @1=6 /* INT meta=0 nullable=0 is_null=0 */ ### @2='f' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @33=3 /* INT meta=0 nullable=1 is_null=0 */ ### @4='89' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @1=6 /* INT meta=0 nullable=0 is_null=0 */ ### @2='f' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @33=3 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### UPDATE test.student ### WHERE ### @1=7 /* INT meta=0 nullable=0 is_null=0 */ ### @2='g' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=4 /* INT meta=0 nullable=1 is_null=0 */ ### @4='43' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @1=7 /* INT meta=0 nullable=0 is_null=0 */ ### @2='g' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=4 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### UPDATE test.student ### WHERE ### @1=8 /* INT meta=0 nullable=0 is_null=0 */ ### @2='h' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=4 /* INT meta=0 nullable=1 is_null=0 */ ### @4='90' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ ### SET ### @1=8 /* INT meta=0 nullable=0 is_null=0 */ ### @2='h' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=4 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */ # at 549 #121124 23:55:15 server id 25 end_log_pos 580 CRC32 0x378c91b0 Xid = 531 COMMIT/*!*/; [root@M1 data]#
其中,这些是误操作之前的数据
### @1=8 /* INT meta=0 nullable=0 is_null=0 */ ### @2='h' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=4 /* INT meta=0 nullable=1 is_null=0 */ ### @4='90' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */
这些是误操作之后的数据
### @1=8 /* INT meta=0 nullable=0 is_null=0 */ ### @2='h' /* VARSTRING(18) meta=18 nullable=1 is_null=0 */ ### @3=4 /* INT meta=0 nullable=1 is_null=0 */ ### @4='failure' /* VARSTRING(30) meta=30 nullable=1 is_null=0 */
这里,@1/@2/@3/@4对应的表字段是id,name,class,score
现在,就要进行最后一步的恢复操作了,只需把这些binlog转成成SQL语句,然后将其导入进去。
[root@M1 opt]# sed '/WHERE/{:a;N;/SET/!ba;s/\([^\n]*\)\n\(.*\)\n\(.*\)/\3\n\2\n\1/}' 1.txt | sed -r '/WHERE/{:a;N;/@4/!ba;s/### @2.*//g}' | sed 's/### //g;s/\/\*.*/,/g' | sed '/WHERE/{:a;N;/@1/!ba;s/,/;/g};s/#.*//g;s/COMMIT,//g' | sed '/^$/d' > ./recover.sql [root@M1 opt]# [root@M1 opt]# cat recover.sql UPDATE test.student SET @11=1 , @2='a' , @3=1 , @4='56' , WHERE @11=1 ; UPDATE test.student SET @1=2 , @2='b' , @3=1 , @4='61' , WHERE @1=2 ; UPDATE test.student SET @1=3 , @2='c' , @3=2 , @4='78' , WHERE @1=3 ; UPDATE test.student SET @1=4 , @2='d' , @3=2 , @4='45' , WHERE @1=4 ; UPDATE test.student SET @1=5 , @2='e' , @33=3 , @4='76' , WHERE @1=5 ; UPDATE test.student SET @1=6 , @2='f' , @33=3 , @4='89' , WHERE @1=6 ; UPDATE test.student SET @1=7 , @2='g' , @3=4 , @4='43' , WHERE @1=7 ; UPDATE test.student SET @1=8 , @2='h' , @3=4 , @4='90' , WHERE @1=8 ; [root@M1 opt]#
再把@1/@2/@3/@4对应的表字段是id,name,class,score,替换掉
[root@M1 opt]# sed -i 's/@1/id/g;s/@2/name/g;s/@3/class/g;s/@4/score/g' recover.sql [root@M1 opt]# sed -i -r 's/(score=.*),/\1/g' recover.sql
[root@M1 opt]#
[root@M1 opt]# cat recover.sql
UPDATE test.student
SET
id=1 ,
name='a' ,
class=1 ,
score='56'
WHERE
id=1 ;
UPDATE test.student
SET
id=2 ,
name='b' ,
class=1 ,
score='61'
WHERE
id=2 ;
UPDATE test.student
SET
id=3 ,
name='c' ,
class=2 ,
score='78'
WHERE
id=3 ;
UPDATE test.student
SET
id=4 ,
name='d' ,
class=2 ,
score='45'
WHERE
id=4 ;
UPDATE test.student
SET
id=5 ,
name='e' ,
class=3 ,
score='76'
WHERE
id=5 ;
UPDATE test.student
SET
id=6 ,
name='f' ,
class=3 ,
score='89'
WHERE
id=6 ;
UPDATE test.student
SET
id=7 ,
name='g' ,
class=4 ,
score='43'
WHERE
id=7 ;
UPDATE test.student
SET
id=8 ,
name='h' ,
class=4 ,
score='90'
WHERE
id=8 ;
[root@M1 opt]#
OK。最激动人心的一幕到来了,我们进行恢复:
mysql> select * from student; +----+------+-------+---------+ | id | name | class | score | +----+------+-------+---------+ | 1 | a | 1 | failure | | 2 | b | 1 | failure | | 3 | c | 2 | failure | | 4 | d | 2 | failure | | 5 | e | 3 | failure | | 6 | f | 3 | failure | | 7 | g | 4 | failure | | 8 | h | 4 | failure | +----+------+-------+---------+ 8 rows in set (0.02 sec) mysql> source /opt/recover.sql Query OK, 1 row affected (0.11 sec) Rows matched: 1 Changed: 1 Warnings: 0 Query OK, 1 row affected (0.95 sec) Rows matched: 1 Changed: 1 Warnings: 0 Query OK, 1 row affected (0.16 sec) Rows matched: 1 Changed: 1 Warnings: 0 Query OK, 1 row affected (0.03 sec) Rows matched: 1 Changed: 1 Warnings: 0 Query OK, 1 row affected (0.80 sec) Rows matched: 1 Changed: 1 Warnings: 0 Query OK, 1 row affected (0.08 sec) Rows matched: 1 Changed: 1 Warnings: 0 Query OK, 1 row affected (0.09 sec) Rows matched: 1 Changed: 1 Warnings: 0 Query OK, 1 row affected (0.07 sec) Rows matched: 1 Changed: 1 Warnings: 0 mysql> select * from student; +----+------+-------+-------+ | id | name | class | score | +----+------+-------+-------+ | 1 | a | 1 | 56 | | 2 | b | 1 | 61 | | 3 | c | 2 | 78 | | 4 | d | 2 | 45 | | 5 | e | 3 | 76 | | 6 | f | 3 | 89 | | 7 | g | 4 | 43 | | 8 | h | 4 | 90 | +----+------+-------+-------+ 8 rows in set (0.02 sec)
mysql>
出处http://hcymysql.blog.51cto.com/5223301/1070148
delete、update忘加where条件误操作恢复过程演示的更多相关文章
- 记一次生产mysql数据误操作恢复过程
提示:建议每次对数据库进行修改时都做下备份 注意:以下Mysql开启的是row格式的binlog日志,确定到误操作具体时间可能有些麻烦,默认的格式就能很快找出来.这里开启row的原因是还有一种更快的方 ...
- MySQL 误操作后数据恢复(update,delete忘加where条件)
在数据库日常维护中,开发人员是最让人头痛的,很多时候都会由于SQL语句写的有问题导致服务器出问题,导致资源耗尽.最危险的操作就是在做DML操作的时候忘加where条件,导致全表更新,这是作为运维或者D ...
- MySQL 误操作后数据恢复(update,delete忘加where条件)【转】
在数据库日常维护中,开发人员是最让人头痛的,很多时候都会由于SQL语句 写的有问题导致服务器出问题,导致资源耗尽.最危险的操作就是在做DML操作的时候忘加where条件,导致全表更新,这是作为运维或者 ...
- MySQL 误删数据、误更新数据(update,delete忘加where条件)
MySQL 误操作后数据恢复(update,delete忘加where条件) 关键词:mysql误删数据,mysql误更新数据 转自:https://www.cnblogs.com/gomysql/p ...
- 如何避免这个delete from tb_name不带条件的操作
那么,我们如何避免这个delete from tb_name不带条件的呢?其实是有办法的,但这只针对运维DBA或者DBA在操作时候有用,但对于PHP和JAVA程序,它的连接操作方式,就没办法避免了 s ...
- Oracle数据库常见的误操作恢复方法(上)
实验环境:Linux6.4 + Oracle 11g 面向读者:Oracle开发维护人员 概要: 1.误操作drop了emp表 2.误操作delete了emp表 3.误操作delete了emp表的部分 ...
- mongo 误操作恢复数据
场景:我往同一个集合里面插入 三条数据 aa:aa bb:bb cc:cc .后来我后悔了,不想插入 bb:bb,通过oplog重放过滤好 bb:bb这条数据. 原理: 1.通过 oplog.r ...
- mysql update 忘加 where 文件恢复
前提条件:mysql :data_row_format=rowmysql> show variables like '%image%';+------------------+-------+| ...
- 将Ctrl+Alt+Delete键进行屏蔽,防止误操作重启服务器
[root@bgw-t ~]# vi /etc/init/control-alt-delete.conf #exec /sbin/shutdown -r now "Control-Alt- ...
随机推荐
- shell中的环境变量
局部(local)环境变量 定义局部环境变量的方式如下: variableName=value 需要注意的是variableName前面没有$符号,并且=两边没有空格. 局部环境变量只能在当前shel ...
- spring 上传图片
@RequestMapping(value = "/upload",method = RequestMethod.POST) public String upload(@Reque ...
- dropdownlist绑定和选中
最近在使用dropdownlist控件,对于这个控件,目前我知道的会使用两种方式去绑定数据,现在将这两种方式分享给大家: 现在是后台数据绑定 protected void BindCarID() { ...
- 【solr基础教程之一】Solr相关知识点串讲
Solr是Apache Lucene的一个子项目.Lucene为全文搜索功能提供了完备的API,但它只作为一个API库存在,而不能直接用于搜索.因此,Solr基于Lucene构建了一个完 ...
- 轻量级jquery框架之--工具栏(toolbar)
工具栏需求: (1)要求工具栏可以通过JSON配置格式生成,这样可以从服务器端控制生成的JSON来控制UI层面的按钮状态 (2)可以自定义按钮的图标样式. (3)可以定义按钮事件,按钮事件需要支持以字 ...
- javascript写的新闻滚动代码
在企业站中,我们会看到很多新闻列表很平滑的滚动,但是这种功能自己写太浪费时间,下面是我整理好的一组很常用的新闻列表滚动,有上下分页哦! 1.body里面 <div class="tz_ ...
- HTML5简单入门系列(七)
前言 本篇详细介绍canvas画布的API.说是详细介绍,也只是一些常用的API及简单实例和说明.LZ本人也还没有看完全部,下篇会介绍剩余的一些内容. 本篇的示例中,LZ加入了注释,为的是只简单介绍A ...
- linux创建SVN客户端,服务器
1- linux基本都自带svn 2-创建svn服务器 新创建服务器代码仓库 # svnadmin create serversvn 这样,我们就在~/目录下新建了版本库serverSvn. 3-修改 ...
- h5 如何打包apk
1.需要下载安装MyEclipse2014,Android SDK,eclipse(需配置Android开发环境) Java和Android环境安装与配置. 2.打开MyEclipse2014,新建一 ...
- information_schema.referential_constraints 学习
information_schema.referential_constraints 表用于查看外键约束 1.information_schema.referential_constraints表的常 ...