MySql : Publish results of a query to a text file

16 / Aug / 2010 by Himanshu Seth 0 comments

A while back I was trying to debug an error in our application logic. For that I had to analyze the results of a query

This analysis was getting pretty tough to do on the command line. So, I tried to find a way to transfer the results of a query to a text file so that they can be analysed easily.

With help from google, I got my answer at http://www.wellho.net/forum/The-MySQL-Relational-Database/MySQL-query-to-a-text-file.html

echo "<YOUR SELECT QUERY>"| /usr/local/mysql/bin/mysql --user=root --password=password dbName > /path/to/your/textFIle.txt/

Hope this helps

FOUND THIS USEFUL? SHARE IT

Tag -

MySql

Leave a Reply

Your email address will not be published. Required fields are marked *