Reputation: 165
I am trying to figure out a way to know all the queries which are slowing my database. I used the command SHOW PROCESSLIST
and it shows only BLOB under command section. How I can I see the actual queries which are taking most time and who is running them ?
Upvotes: 1
Views: 4399
Reputation: 12496
SHOW FULL PROCESSLIST\G
should show you queries, users and source IP addresses.
Upvotes: 3