MySQL 解决:Reading table information for completion of table and column names

当执行 use 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
提示问题原因:
是由于数据库太大,即数据库中表非常多,所以如果预读数据库信息,将非常慢,所以就卡住了,如果数据库中表非常少,将不会出现问题。
出现问题的原因是:
我们进入mysql 时,没有使用-A参数。
 
解决问题:
mysql > mysql -hhostname -uusername -ppassword -Pport  -A
当我们打开数据库,即use dbname时,要预读数据库信息,当使用-A参数时,就不预读数据库信息。

您可以选择一种方式赞助本站

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: