Quick question: I have created come commands that will warm-up my DB. The thing is that those selects are large. When I do such a select I get all the "jiba-jaba" into my terminal window. How can you make mysql do the select 'quietly' ? without taking ages to print all the crap into my terminal ?
|
feedback
|
|
You can redirect the output of any command -- not just MySQL -- by using your shell's i/o redirection operators. For example, in bash:
This will launch the MySQL command line client, connect it to "mydb" on the local system (assuming you have access), read SQL commands from the file If you wanted to save the output for review after the fact, you could redirect it to a file rather than to
The
| |||
|
feedback
|
| ||||
|
feedback
|