can I enable the slow query log specifically for just one database?
What I've done currently is to take the entire log into excel and then run a pivot report to work out which database is the slowest. So i've gone and done some changes to that application in the hope of reducing the slow query occurence. rather than running my pivot report again which took a bit of time to cleanse the data i'd rather just output slow queries from the one database
possible?
I have something a little unorthodox if you really want to have a slow query log for a particular database. Keep in mind that what I am about to suggest works for MySQL 5.1.30 and above:
Step 01) Start off by adding these to /etc/my.cnf
log-output lets you specify the output of general logs and slow logs to be tables rather than text files.
Step 02) service mysql restart
There is a table in the mysql schema called slow_log
In mysql run this
It should be a CSV table.
Step 03) Convert it to MyISAM and Index the Table on the start_time column
It should look like this
Notice that one of the columns is db. You should add an additional index as follows:
From here you could perform one of three(3) options
OPTION 1 : Query mysql.slow_log by the database you want
OPTION 2 : Delete all entries in mysql.slow_log that does not come from whateverdbiwant
OPTION 3 : Copy all entries into another slow_log table for you to query from
Give it a Try !!!
UPDATE 2011-06-20 18:08 EDT
I have an additional unorthodox idea you might like.
Try moving the MyISAM table's .MYD and .MYI for the slow log over to another disk volume. Them symlink /var/lib/mysql/mysql/slow_log.MYD and /var/lib/mysql/mysql/slow_log.MYI to the new location of the real .MYD and .MYI.
If you thought that was crazy, here is yet another unorthodox idea you might like.
If you have binary logging turned on already, setup replication to move the the slow to another box. How in the world do you do that ???
Step 01) Setup replication slave with this option
Step 02) Activate the slow log on the slave
Step 03) Run this command on the master
By using the BLACKHOLE storage engine, This eliminates disk I/O to the slow log on the master. The slave is setup so that its sole purpose is to collect entries for mysql.slow_log.
I don't think you have such options available in MySQL, but there are ways you can get it, I searched for you in google and found some interesting links that might help you achieving your problem.
Hope this is helpful:
http://code.google.com/p/mysql-log-filter/
http://www.maatkit.org/doc/mk-query-digest.html