I ran a MySQL query from command line using the following:
nohup mysql --user=root --password=XXXXXXXXX database < report.sql > results.tab
This query is extensive (5000 lines) and running a complex search over 90,000,000 rows from 150 tables.
This query has been running for over 24 hours and has not yet finished.
Is there a way I can run status check on this running query?
try
show processlistin mysql if that works.