Stupid monitoring trick: Watch mysql queries fly

1 Comment

Put this somewhere in your ~/bin:

watch 'echo "show processlist" | mysql -u whateveruser --password=mypassword | grep -v "show processlist" '

Now run it and you will have a poor man's monitor, kind of like top but for MySQL. That coupled with screen (or multiple terminals) may give you some quick and easy piece of mind.

This should give you *a lot* of monitoring automation ideas. It should be easy to put together a shell script that puts it all in a little "important things panel" to use watch on. Sometimes that's all you need.

Oracle tuning: Using Hints

Comments Off

Every once in a while you will get a query that no matter what you try, it doesn't use the indices. This is typically because the cost-based optimizer decides that an approach that is slower has a total cost that is lower than using the index and making it faster.

To solve this, you would use a hint. You can find an article on how to do this on dbasupport. But the basics are: More

Oracle tuning: Using explain plan

Comments Off

In order to make queries run faster, you should try to have oracle explain to you how the query should be performed.

The whole explanation for oracle tuning can be found on the Oracle Tuning guide, but here are the basics. More

MySQL: Create/Drop DB and user

Comments Off

This tip contains a couple of MySQL scripts that allow me to create and drop a database and a user that will "own" said database. More