Roberto Apasajja Asked: 2012-03-04 23:49:51 +0800 CST2012-03-04 23:49:51 +0800 CST 2012-03-04 23:49:51 +0800 CST How to use "-A" in "use dbname;" 772 When running use dbname; in MySQL admin, I will get this message: Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A But I still not clear about how to use -A? mysql database mysql5 1 Answers Voted Best Answer Lars Rohrbach 2012-03-05T00:06:34+08:002012-03-05T00:06:34+08:00 The -A (or equivalently --no-auto-rehash) is to be added as an option to mysql when starting it from a command line, e.g.: mysql -p -u myusername -A Are you running mysql from a shell prompt, or through some web admin interface?
The
-A
(or equivalently--no-auto-rehash
) is to be added as an option tomysql
when starting it from a command line, e.g.:Are you running
mysql
from a shell prompt, or through some web admin interface?