MySQL -A不预读数据库信息(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 -Ahttps://www.cndba.cn/hbhe0316/article/5043

mysql> use testdb;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

让后就卡在这里。https://www.cndba.cn/hbhe0316/article/5043

上面卡住的原因:是由于数据库太大,即数据库中表非常多,所以如果预读数据库信息,将非常慢,所以就卡住了,如果数据库中表非常少,将不会出现问题。https://www.cndba.cn/hbhe0316/article/5043

https://www.cndba.cn/hbhe0316/article/5043
https://www.cndba.cn/hbhe0316/article/5043

出现问题的原因是::
我们进入mysql 时,没有使用-A参数;https://www.cndba.cn/hbhe0316/article/5043

1.加-A参数进入数据库

https://www.cndba.cn/hbhe0316/article/5043
[root@mysql8 ~]#  mysql -uroot -pwwwwww -A -e "use testdb;select * from t1;"
mysql: [Warning] Using a password on the command line interface can be insecure.
+------+
| id   |
+------+
|    1 |
+------+

2.不加-A参数进入数据库
当我们打开数据库,即use dbname时,要预读数据库信息,当使用-A参数时,就不预读数据库信息。https://www.cndba.cn/hbhe0316/article/5043https://www.cndba.cn/hbhe0316/article/5043

[root@mysql8 ~]#  mysql -uroot -pwwwwww -e "use testdb;select * from t1;"
mysql: [Warning] Using a password on the command line interface can be insecure.
+------+
| id   |
+------+
|    1 |
+------+

总结:

https://www.cndba.cn/hbhe0316/article/5043
当数据库中表非常多,如果预读数据库信息,将非常慢,可能会卡住,如果数据库中表非常少,将不会出现问题。
正确的打开方式是: mysql -hhostname -uusername -ppassword -Pport -A的方式进入数据库。

版权声明:本文为博主原创文章,未经博主允许不得转载。

MYSQL

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值