To clear your eximstats database follow these steps:
1. Login to MySQL:
mysql
Then run:
mysql> use eximstats; mysql> delete from sends; mysql> delete from smtp; mysql> delete from failures; mysql> delete from defers;
You can also drop and recreate eximstats:
mysqladmin drop eximstats mysqladmin create eximstats mysql eximstats < /usr/local/cpanel/etc/eximstats_db.sql
Hope this helps!