MySQL tools released by Matt Heaton through my hosting company Bluehost.com. Original Patch created by Mark Callaghan at Google
UserTableMonitoring  
Activity monitoring per table, account and index

Introduction

We have added code to measure database activity and aggregate the results per account, table and index. We have also added SQL statements to display these values.

Details

Note that rows changed includes rows from insert, update, delete and replace statements.

The commands are:

SHOW USER_STATISTICS

This displays resource consumption for all sessions per database account:

SHOW TABLE_STATISTICS

This displays the number of rows fetched and changed per table. It also displays the number of rows changed multiplied by the number of indexes on the table.

SHOW INDEX_STATISTICS

This displays the number of rows fetched per index. It can be used to find unused indexes.