1) Update_time not accurate in information_schema.tables
Information_schema.tables has a field called update_time and in 5.6 you will notice that it is always NULL. Future versions of MySQL will fix this problem
2) Multiple instance manager
Currently creating , managing and dropping instances in MySQL requires many DBA hours. mysqld_multi is there to help you but it requires initial configuration and there are other third party utilities that could come to your rescue
It would be better to have built in utilities to help us in this regard.. For example db2 has db2icrt that creates an instance , db2ilist to list instances and db2idrop to drop an instance
3) Quiesce database in MySQL
There is no built in quiesce option to block all activity on the database/instance. Although method mentioned in below URL will help you in doing manual quiesce …
[Read more]