亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

【MySQL】數據庫閃回工具--binlog2sql

發布時間:2020-05-11 13:12:32 來源:網絡 閱讀:541 作者:NOGYMS 欄目:MySQL數據庫
[root@wallet01?~]#?cat?/etc/redhat-release?
CentOS?Linux?release?7.5.1804?(Core)?

[root@wallet01?~]#?python?-V
Python?2.7.5

[root@wallet01?~]#?yum?install?-y?python-pip

[root@wallet01?~]#?pip?-V
pip?8.1.2?from?/usr/lib/python2.7/site-packages?(python?2.7)

[root@wallet01?~]#?git?clone?https://github.com/danfengcao/binlog2sql.git
Initialized?empty?Git?repository?in?/root/binlog2sql/.git/
remote:?Enumerating?objects:?323,?done.
remote:?Total?323?(delta?0),?reused?0?(delta?0),?pack-reused?323
Receiving?objects:?100%?(323/323),?151.51?KiB?|?245?KiB/s,?done.
Resolving?deltas:?100%?(170/170),?done.

[root@wallet01?~]#?cd?binlog2sql
[root@wallet01?binlog2sql]#?pip?install?-r?requirements.txt
[root@wallet01?binlog2sql]#?cd?binlog2sql/
[root@wallet01?binlog2sql]#?python?binlog2sql.py?--help
usage:?binlog2sql.py?[-h?HOST]?[-u?USER]?[-p?[PASSWORD?[PASSWORD?...]]]
?????????????????????[-P?PORT]?[--start-file?START_FILE]
?????????????????????[--start-position?START_POS]?[--stop-file?END_FILE]
?????????????????????[--stop-position?END_POS]?[--start-datetime?START_TIME]
?????????????????????[--stop-datetime?STOP_TIME]?[--stop-never]?[--help]
?????????????????????[-d?[DATABASES?[DATABASES?...]]]
?????????????????????[-t?[TABLES?[TABLES?...]]]?[--only-dml]
?????????????????????[--sql-type?[SQL_TYPE?[SQL_TYPE?...]]]?[-K]?[-B]
?????????????????????[--back-interval?BACK_INTERVAL]
?????????????????????
--start-file?--起始解析文件
--stop-file??--終止解析文件
--start-position?--起始解析位置
--stop-position??--終止解析位置
--start-datetime?--起始解析時間,格式'%Y-%m-%d?%H:%M:%S'。
--stop-datetime?--終止解析時間,格式'%Y-%m-%d?%H:%M:%S'。
-d?--僅解析目標db的sql
-t?--僅解析目標table的sql
--only-dml?--僅解析dml,忽略ddl。
--sql-type?--僅解析指定類型,支持insert,update,delete。
-B?--生成回滾SQL

[root@wallet01?~]#?mysql?-uroot?-p
Enter?password:?
mysql>?grant?select,replication?client,replication?slave?on?*.*?to?'fb'@'%'?identified?by?'fb@2019';????
Query?OK,?0?rows?affected?(0.05?sec)

mysql>?flush?privileges;
Query?OK,?0?rows?affected?(0.11?sec)

mysql>?show?master?status;
+------------------+----------+--------------+------------------+-------------------+
|?File?????????????|?Position?|?Binlog_Do_DB?|?Binlog_Ignore_DB?|?Executed_Gtid_Set?|
+------------------+----------+--------------+------------------+-------------------+
|?mysql-bin.000008?|??????120?|??????????????|??????????????????|???????????????????|
+------------------+----------+--------------+------------------+-------------------+
1?row?in?set?(0.00?sec)

mysql>?select?now();
+---------------------+
|?now()???????????????|
+---------------------+
|?2019-10-12?17:18:22?|
+---------------------+
1?row?in?set?(0.06?sec)

mysql>?use?gsoa

mysql>?select?count(*)?from?bd_city;
+----------+
|?count(*)?|
+----------+
|??????372?|
+----------+
1?row?in?set?(0.00?sec)

mysql>?begin;
Query?OK,?0?rows?affected?(0.00?sec)

mysql>?delete?from?bd_city;
Query?OK,?372?rows?affected?(0.09?sec)

mysql>?commit;
Query?OK,?0?rows?affected?(0.04?sec)

mysql>?select?count(*)?from?bd_city;
+----------+
|?count(*)?|
+----------+
|????????0?|
+----------+
1?row?in?set?(0.01?sec)

mysql>?select?now();
+---------------------+
|?now()???????????????|
+---------------------+
|?2019-10-12?17:22:26?|
+---------------------+
1?row?in?set?(0.00?sec)

恢復已提交事務中刪除的記錄
[root@wallet01?binlog2sql]#?python?binlog2sql.py?-hlocalhost?-P3306?-ufb?-p'fb@2019'?-dgsoa?-tbd_city?\
--start-file='mysql-bin.000008'?--only-dml?--sql-type=delete?\
--start-datetime='2019-10-12?17:18:22'?--stop-datetime='2019-10-12?17:22:26'?>fb.log

[root@wallet01?binlog2sql]#?more?fb.log?
DELETE?FROM?`gsoa`.`bd_city`?WHERE?`status`='1'?AND?`parent_name`='中國'?AND?`code`='110000'?AND?`name`='北京市'?AND?`parent_code`='CN'?LIMIT?1;?
#start?423?end?8756?time?2019-10-12?17:21:26

[root@wallet01?binlog2sql]#?tail?-n?1?fb.log?
DELETE?FROM?`gsoa`.`bd_city`?WHERE?`status`='1'?AND?`parent_name`=''?AND?`code`='CN'?AND?`name`='中國'?AND?`parent_code`=''?LIMIT?1;?
#start?423?end?19319?time?2019-10-12?17:21:26

[root@wallet01?binlog2sql]#?python?binlog2sql.py?-hlocalhost?-P3306?-ufb?-p'fb@2019'?-dgsoa?-tbd_city?\
--start-file='mysql-bin.000008'?--start-position=423?--stop-position=19319?-B?>?rollback.sql

[root@wallet01?binlog2sql]#?more?rollback.sql?|?grep?'北京'
INSERT?INTO?`gsoa`.`bd_city`(`status`,?`parent_name`,?`code`,?`name`,?`parent_code`)?VALUES?('1',?'中國',?'110000',?'北京市',?'CN');?
#start?423?end?8756?time?2019-10-12?17:21:26

[root@wallet01?binlog2sql]#?mysql?-uroot?-p?<?rollback.sql?
Enter?password:?

[root@wallet01?~]#?mysql?-uroot?-p
Enter?password:?
mysql>?use?gsoa

mysql>?select?count(*)?from?bd_city;
+----------+
|?count(*)?|
+----------+
|??????372?|
+----------+
1?row?in?set?(0.00?sec)


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

南充市| 怀安县| 河源市| 满洲里市| 安化县| 疏附县| 汝南县| 光泽县| 浦北县| 纳雍县| 章丘市| 清镇市| 彝良县| 大丰市| 宣武区| 屏山县| 丹凤县| 安乡县| 布尔津县| 襄城县| 广西| 合肥市| 白山市| 浦城县| 神农架林区| 德格县| 江津市| 平顶山市| 曲阜市| 齐齐哈尔市| 确山县| 丰镇市| 保德县| 兴文县| 蒙城县| 城口县| 营口市| 雷山县| 汾阳市| 临沂市| 凤凰县|