Reputation: 1
When I start mySQL command line client, I am prompted to enter my password. After doing so, I want to know what the proper command would be to turn on the "--verbose" option.
Upvotes: 0
Views: 4820
Reputation: 584
mysql -u user -p -v
or
mysql -u user -p -vvv (more verbose)
Upvotes: 2