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 -Amysql
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
讓後就卡在這裏。sql
上面卡住的緣由::
是因爲數據庫太大,即數據庫中表很是多,因此若是預讀數據庫信息,將很是慢,因此就卡住了,若是數據庫中表很是少,將不會出現問題。數據庫
出現問題的緣由是::
咱們進入mysql 時,沒有使用-A參數;
即咱們使用
mysql -hhostname -uusername -ppassword -Pport 的方式進入數據,
而沒有使用
mysql -hhostname -uusername -ppassword -Pport -A的方式進入數據庫。ui
當咱們打開數據庫,即use dbname時,要預讀數據庫信息,當使用-A參數時,就不預讀數據庫信息。