One of the ways I try to contribute to the MySQL community is by answering questions on Stack Overflow. Based on the votes my answers get, I can tell that some of them are helpful only to the person who asked the question (if that), but a few of my answers continue to get upvotes for months and even years.
For example, here's my most popular answer. If you don't want to follow the link, the question is essentially "How do I optimize all tables in a MySQL instance with a single command?" and my answer is "mysqlcheck -o".
Apparently that is a common problem, and lots of people find my
solution useful, which is nice. But would I ever actually run
mysqlcheck -o
? Probably not. At least, not on a
production database.
I wouldn't run it on an active …
[Read more]