tags:

views:

24

answers:

1

When I issue SHOW PROCESSLIST query, only first 100 characters of the running SQL query are returned in the info column.

Is it possible to change Mysql config or issue a different kind of request to see complete query (the queries I'm looking at are longer than 100 characters)

+2  A: 
SHOW FULL PROCESSLIST

If you don't use FULL, the queries are truncated in the results.

James McNellis