您好,登錄后才能下訂單哦!
這篇文章主要講解了“Mysql誤刪除數據庫怎么恢復”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Mysql誤刪除數據庫怎么恢復”吧!
----誤刪除數據庫恢復-------------
備份時間點:
-- CHANGE MASTER TO MASTER_LOG_FILE='mysql-bin.000211', MASTER_LOG_POS=12737491;
全備恢復:
mysql -uroot -p -h227.0.0.1<monitor_2016-05-24.sql
分析binlog日志:
mysqlbinlog -vvv mysql-bin.000211 --database=monitor >/tmp/monitor_binlog211.sql
mysqlbinlog -vvv mysql-bin.000212 --database=monitor >/tmp/monitor_binlog212.sql
找出drop table的操作
grep -i "drop table" /tmp/monitor_binlog212.sql
找出誤update操作:
mysqlbinlog --no-defaults -vvv mysql-bin.000710 --database=ticket --start-datetime="2016-06-21 16:05:00" |grep -B 50 '### UPDATE `ticket`.`cinema`' |more
vi /tmp/monitor_binlog212.sql
/DROP TABLE IF EXISTS "analysedubborequest"
# at 10970522
#160525 11:42:23 server id 108 end_log_pos 10970597 CRC32 0x3ccef367 Query thread_id=162474 exec_time=0 error_code=0
SET TIMESTAMP=1464147743/*!*/;
BEGIN
/*!*/;
# at 10970597
# at 10970664
# at 10970886
#160525 11:42:23 server id 108 end_log_pos 10970917 CRC32 0xd89947f3 Xid = 24254453
COMMIT/*!*/;
# at 10970917
#160525 11:42:26 server id 108 end_log_pos 10971065 CRC32 0x3c4914bf Query thread_id=168489 exec_time=0 error_code=0
use `monitor`/*!*/;
SET TIMESTAMP=1464147746/*!*/;
SET @@session.foreign_key_checks=0/*!*/;
DROP TABLE IF EXISTS "analysedubborequest" /* generated by server */
/*!*/;
# at 10971065
注:
DROP TABLE IF EXISTS "analysedubborequest" /* generated by server */
在# at 10970917(start-position)和end_log_pos 10971065 (stop-position)刪除操作在這個位置
增量恢復:
mysqlbinlog --start-position='12737491' mysql-bin.000211 --database=monitor | mysql -uroot -p
mysqlbinlog --stop-position='10970522' mysql-bin.000212 --database=monitor | mysql -uroot -p
其它:
查看binlog events:
show binlog events in 'mysql-bin.000212'\G
基于時間點查看,不準
mysqlbinlog -vvv mysql-bin.000212 --startdatetime='時間' --stopdatetime='時間' --database=monitor
感謝各位的閱讀,以上就是“Mysql誤刪除數據庫怎么恢復”的內容了,經過本文的學習后,相信大家對Mysql誤刪除數據庫怎么恢復這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。