Datebase tracing and monitoring

I am loking for recommernded tool, better if open source but not must, for monitoring and tracing DB. I am using MySql DB.
[129 byte] By [yaronra] at [2007-11-27 9:13:47]
# 1
The utility 'Toad' is popular. I dont know if the supplier as a free version or just a 30 day evaluation product. However there are probably free utility tools that you can use with MySql. Look up on the internet the following:mysql administration tools free
George123a at 2007-7-12 22:01:27 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 2
> I am loking for recommernded tool, better if open> source but not must, for monitoring and tracing DB. I> am using MySql DB. http://dev.mysql.com/downloads/gui-tools/5.0.html
aniseeda at 2007-7-12 22:01:27 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 3
try this one >>> http://www.webyog.com/en/downloads.php
yyurdusevenna at 2007-7-12 22:01:27 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...
# 4

>The utility 'Toad' is popular.

"Toad" strictly Oracle specific, the OP wants to use MySQL.

DBVisualizer is implemented in Java via JDBC, and works with all databases including MySQL.( free version, slightly less functionality than pay version )

It depends on what you want really.

If you want to log all the SQL statements that go from your application to a database, then the likes of P6SPY will do that for you. http://www.p6spy.com/

It's like a virtual JDBC driver, which intercepts all JDBC calls and passes them on to your real JDBC driver.It can log all the SQL, including the real parameters from a preparedstatement.

regards,

Owen

omcgoverna at 2007-7-12 22:01:27 > top of Java-index,Database Connectivity,Java Database Connectivity (JDBC)...