查看数据库大小
1 | #进去指定 schema 数据库(存放了其他的数据库的信息) |
查看表碎片
1 | SHOW TABLE STATUS from yiyuansha like 'yys_shangpin'\G |
binlog
1 | mysqlbinlog -vv --base64-output=decode-rows --start-datetime="2020-03-24 18:40:00" --stop-datetime="2020-03-24 19:00:00" "D:\mysql-bin.000536" | grep -i "keyword" -A 10 -B 10 > "D:\test.sql" |
MySQL 5.7 数据库用户授权
1 | # 1.使用 root 管理员登陆 mysql |