Thanks for the help. Actually, I figured it out. I'm using MySQL Administrator and that explained the calls for SHOW STATUS and SHOW INNODB STATUS. However, the other calls are because of JDBC. Every time a Java based client connects to the database the following calls are executed:
Query SET NAMES latin1
Query SET character_set_results = NULL
Query SHOW VARIABLES
Query SHOW COLLATION
Query SET autocommit=1
I guess its not a big deal but is it really necessary? Can we specify the default conditions for the JDBC so these calls aren't necessary?
Thanks,
Paco