TEE statement in mysql - Mysql Views : 1554
Tagged in : Mysql
0 0
Send mail
The TEE statement may be used to log output from your SQL statements to a text file. The following command copies all output to the file query.txt so you can examine the results of running your queries.

mysql> TEE query.txt


You can turn off logging using the NOTEE statement.

mysql> NOTEE
By Rekha, On - 2009-04-02



    Login to add Comments .