MySQL Show ProcessList Full Abfrage
#Enter into mysql console:
mysql
#Then...
#Access to full query:
SELECT * from INFORMATION_SCHEMA.PROCESSLIST where db = 'your_database_name_here'
#Simplest list
show [full] processlist;
Matteoweb