mysql查询表⼤⼩不正确_mysql查询表⼤⼩
mysql下载app
⼯作中常⽤命令参考,收集如下:
查询表⼤⼩:
select table_name, data_length from information_schema.tables where table_schema='testtable';
查询表⾏数(基于information_schema)
select t.table_schema,t.table_name,t.table_ate_time,t.update_time from information_schema.tables t where t.table_name='history' and t.table_schema='zabbix' order ate_time desc,t.update_time desc;
查询所有表⾏数降序(基于information_schema)
select t.table_schema,t.table_name,t.table_ate_time,t.update_time from information_schema.tables t where t.table_schema='zabbix' order by t.table_rows desc;
mysql⽤户授权:
grant all on *.* to testtable@'%' identified by "123456";
初始化mysql实例
mysqld --defaults-file=/data0/mysql/3306/myf --initialize-insecure --user=mysql
mysql导出表结构:
mysqldump -s mysql.sock -d app > app_0330.sql
dump避免gtid导出
mysqldump -s mysql.sock --set-gtid-purged=off -b app > app.sql
innobackupex恢复:
innobackupex --defaults-file=/data0/mysql/3307/myf --apply-log /home/my3307back/2018-03-20_03-00-01/
innobackupex --defaults-file=/data0/mysql/3307/myf --copy-back /home/my3307back/2018-03-20_03-00-01/
sql -r /data0/mysql/3306/data
基于时间pos点的恢复:
mysqlbinlog --start-position=113927317 --stop-position=220222447 mysql-bin.000016 |mysql -s mysql.sock
如您对本⽂有疑问或者有任何想说的,请点击进⾏留⾔回复,万千⽹友为您解惑!

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。