Tagged Questions
The mysqldumpslow tag has no wiki summary.
4
votes
2answers
2k views
Where do I find the MysqlDumpSlow command?
Hi I'm logging slow queries because we're having some performance
issues and I have read about mysqldumpslow and thought that would be a good
way to sort through the queries.
At the command prompt ...
1
vote
1answer
64 views
How can I turn on MySql Slow Queries in runtime?
Is there any way to turn Slow queries on when MySQL server in running? Because i cannot restart MySQL server since the manager in on vacation!
1
vote
1answer
280 views
how to stop mysqldump from recording as slow queries
Im recording slow queries longer than 2 seconds. That is running fine except, the daily backups also get recorded in slow log because 1) mysqldump calls select * from xyz (big table); and 2) when ...
0
votes
1answer
93 views
How to log mySQL queries without indexes?
I see there is a nice option how to enable log slow queries and queries without indexes:
SET GLOBAL log_queries_not_using_indexes=1;
SET GLOBAL log_slow_queries=1;
OK, OK, but it seems both ...
0
votes
1answer
44 views
How can I keep queries like this out of mysql_slow.log?
I have the following query I need help with.
SELECT a.artist, a.facepic
FROM artists_vs AS v, artists AS a
WHERE v.genreid =0
AND (v.artistid1 = a.artistid OR v.artistid2 = a.artistid)
ORDER BY ...
0
votes
1answer
199 views
mysqldumpslow @ Freebsd
I have installed
mysql-client-5.4.2 Multithreaded SQL database (client)
mysql-server-5.4.2 Multithreaded SQL database (server)
on my FreeBSD 8.0 box
Why isnt there mysqldumpslow command ...