sqlserver数据表误删恢复
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sqlserver数据表误删恢复相关的知识,希望对你有一定的参考价值。
参考技术A 通过日志来恢复到某个时间段就行了。很简单的。MySQL误删数据恢复
MySQL误删数据恢复
误删数据后,在开启binlog的前提下,可以通过binlog恢复数据
一、误删操作
truncate table bigdata.order_info
二、定位position
1.查看binlog文件
mysql> show binary logs;
+------------------+-----------+
| Log_name | File_size |
+------------------+-----------+
| mysql-bin.000001 | 2388774 |
+------------------+-----------+
1 row in set (0.00 sec)
2.1 查看truncate操作Position-方式一
2.2 查看truncate操作Position-方式二
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]#
2.3 查看truncate操作Position-方式三
[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中摘选出指定表的相关语句,从而进行恢复
以上是关于sqlserver数据表误删恢复的主要内容,如果未能解决你的问题,请参考以下文章
SQLSERVER 2008误删除表,几百万行数据没了,怎么恢复