溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

解決:Reading table information for completion of table and column names

發(fā)布時(shí)間:2020-06-16 10:55:13 來(lái)源:網(wǎng)絡(luò) 閱讀:5407 作者:yzy121403725 欄目:數(shù)據(jù)庫(kù)

mysql -A不預(yù)讀數(shù)據(jù)庫(kù)信息(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

解決:Reading table information for completion of table and column names

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 
讓后就卡在這里。

上面卡住的原因:: 
是由于數(shù)據(jù)庫(kù)太大,即數(shù)據(jù)庫(kù)中表非常多,所以如果預(yù)讀數(shù)據(jù)庫(kù)信息,將非常慢,所以就卡住了,如果數(shù)據(jù)庫(kù)中表非常少,將不會(huì)出現(xiàn)問(wèn)題。

出現(xiàn)問(wèn)題的原因是:: 
我們進(jìn)入mysql 時(shí),沒(méi)有使用-A參數(shù); 
即我們使用 
mysql -hhostname -uusername -ppassword -Pport 的方式進(jìn)入數(shù)據(jù), 
而沒(méi)有使用 
mysql -hhostname -uusername -ppassword -Pport -A的方式進(jìn)入數(shù)據(jù)庫(kù)。

       當(dāng)我們打開(kāi)數(shù)據(jù)庫(kù),即use   dbname時(shí),要預(yù)讀數(shù)據(jù)庫(kù)信息,當(dāng)使用-A參數(shù)時(shí),就不預(yù)讀數(shù)據(jù)庫(kù)信息。


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI