当前位置:Gxlcms > mysql > 统计MySQLbinlog中的DML语句

统计MySQLbinlog中的DML语句

时间:2021-07-01 10:21:17 帮助过:74人阅读

统计MySQL binlog中的DML语句 MASTER@root@test 07:44:52gt;create table tab02(id int(10) primary key,name varchar(20)); Q

统计MySQL binlog中的DML语句

MASTER@root@test 07:44:52>create table tab02(id int(10) primary key,name varchar(20));
Query OK, 0 rows affected (0.10 sec)

MASTER@root@test 08:34:54>
MASTER@root@test 08:34:54>
MASTER@root@test 08:34:54>insert into tab02 values(1,'ddd');
Query OK, 1 row affected (0.00 sec)

MASTER@root@test 08:34:59>insert into tab02 values(2,'ddd');
Query OK, 1 row affected (0.00 sec)

MASTER@root@test 08:35:01>insert into tab02 values(3,'ddd');
Query OK, 1 row affected (0.00 sec)

MASTER@root@test 08:35:03>insert into tab02 values(4,'ddd');
Query OK, 1 row affected (0.00 sec)

MASTER@root@test 08:35:04>insert into tab02 values(5,'ddd');
Query OK, 1 row affected (0.01 sec)

MASTER@root@test 08:35:07>insert into tab02 values(6,'ddd');
Query OK, 1 row affected (0.00 sec)

MASTER@root@test 08:35:09>delete from tab02 where id=6;
Query OK, 1 row affected (0.02 sec)

MASTER@root@test 08:35:19>update tab02 set where id=1
-> ;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0

MASTER@root@test 08:35:39>update tab02 set where id=3;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 0

[root@mynode1 mysql]# /service/mysql/bin/mysqlbinlog binlog-master.000006 |\
> grep -i -e "^update" -e "^insert" -e "^delete" -e "^replace" -e "^alter" | \
> cut -c1-100 | tr '[A-Z]' '[a-z]' | \
> sed -e "s/\t/ /g;s/\`//g;s/(.*$//;s/ set .*$//;s/ as .*$//" | sed -e "s/ where .*$//" | \
> sort | uniq -c | sort -nr
7 insert into tab02 values
2 update tab02
1 delete from tab02

相关阅读:

MySQL 大DML操作建议

MySQL常用DDL、DML、DCL语言整理(附样例)

MySQL中binlog日记清理

linux

人气教程排行