MySQL 执行 'use databases;' 时很慢

Posted 小怪兽的技术博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 执行 'use databases;' 时很慢相关的知识,希望对你有一定的参考价值。


问题描述:

  就是这么个情况,登录数据库切换库时感觉很卡,需要等待几秒钟。

案例:

shell > mysql -uroot -ppassword

mysql> use databases;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed

mysql>

# 当数据库中表比较多,且单表又比较大时,执行这个 use databases 指令就会很卡 ( 也跟机器性能有很大关系 )

解决方法:

# 这时就可以按照提示,连接时加入 -A 参数

shell > mysql -A -uroot -ppassword

mysql> use databases;
Database changed

# 这样就很快了,简直快的飞起。

参数解释:

-A, --no-auto-rehash 
        No automatic rehashing. One has to use rehash to get
        table and field completion. This gives a quicker start of
        mysql and disables rehashing on reconnect.

 

以上是关于MySQL 执行 'use databases;' 时很慢的主要内容,如果未能解决你的问题,请参考以下文章

MySQL-Access denied for user 'username'@'localhost' (using password: YES) 解决

MYSQL 内存报错 Use 'mysqld --thread_stack=#' to specify a bigger stack.

连接mysql报错Access denied for user 'root'@'localhost' (using password: YES)解决办法

异常连接MySQL权限异常SQLException: Access denied for user 'root'@'192.168.xxx.xxx' (using

最新 mysql登录报错“Access denied for user 'root'@'localhost' (using password: NO”的处理方法

连接MySQL数据库出现错误:Access denied for user 'root'@'localhost' (using password:YES)