在使用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 -AOracle存储过程语法MySQL5.5主主复制配置方法及测试结果相关资讯 MySQL切换库 本文评论 查看全部评论 (0)