解决:Reading table information for completion of table and column names
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决:Reading table information for completion of table and column names相关的知识,希望对你有一定的参考价值。
mysql -A不预读数据库信息(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
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
让后就卡在这里。
上面卡住的原因::
是由于数据库太大,即数据库中表非常多,所以如果预读数据库信息,将非常慢,所以就卡住了,如果数据库中表非常少,将不会出现问题。
出现问题的原因是::
我们进入mysql 时,没有使用-A参数;
即我们使用
mysql -hhostname -uusername -ppassword -Pport 的方式进入数据,
而没有使用
mysql -hhostname -uusername -ppassword -Pport -A的方式进入数据库。
当我们打开数据库,即use dbname时,要预读数据库信息,当使用-A参数时,就不预读数据库信息。
以上是关于解决:Reading table information for completion of table and column names的主要内容,如果未能解决你的问题,请参考以下文章
WARNING: Re-reading the partition table failed
TypeError: Cannot read properties of undefined (reading ‘NAME‘)报错解决
Impossible WHERE noticed after reading const tables
mysql切换数据库提示警告:Reading table information for completion of table and column names
MySQL:浅析 Impossible WHERE noticed after reading const tables
MySQL特异功能之:Impossible WHERE noticed after reading const tables