您的位置:首页 > 数据库 > MySQL

mysql check table脚本

2016-07-19 19:08 633 查看
#! /bin/bash

host_name=localhost

#user_name=root

#user_pass=123456

database=mysql

tables=$(mysql --login-path=root -h$host_name $database -A -Bse "show tables")

for table in $tables

do

check_full_status=$(mysql --login-path=root -h$host_name $database -A -Bse "check table $table")

check_status=`echo $check_full_status | awk {'print $4'} | sed s/[[:space:]]//g`

if [ "$check_status" != "OK" ]

then

echo $check_full_status

fi

done

注:mysql --login-path=root这个登录方式是使用了mysql_config_editor set工具

PS1:


Linux下把MySQL的查询结果保存的文件中去

执行

mysql -h 主机 -u 用户 -p密码 -P端口 -D库 -Bse “select house_id,type from 表名 where account_id=123;”  > /tmp/a.txt

PS2:

MySQL在切换库时报使用-A参数

在使用user dbname 时会出现速度慢的现象,并报提示:

mysql> use dbname

Reading table information for completion of table and column names

You can turn off this feature to get a quicker startup with -A

然后就卡在这里。

原因是当我们打开数据库,即use dbname时,要预读数据库信息。由于数据库太大,即数据库中表非常多,所以如果预读数据库信息,将非常慢,所以就卡住了,如果数据库中表非常少,将不会出现问题。

解决办法mysql已经有所提示:

我们进入mysql 时,没有使用-A参数:

mysql> mysql -hhostname -uusername -ppassword -Pport

当使用-A参数时,就不预读数据库信息,速度就会快起来:

mysql> mysql -hhostname -uusername -ppassword -Pport -A
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: