mistrymayhem
mistrymayhem

Reputation: 1

How to turn "--Verbose" option on in mySQL?

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

Answers (1)

DBHash.com
DBHash.com

Reputation: 584

mysql -u user -p -v

or

mysql -u user -p -vvv (more verbose)

Upvotes: 2

Related Questions