while (1) { my ($ct1) = $dbh->selectrow_array('select count(*) from TABLE'); sleep 60; my ($ct2) = $dbh->selectrow_array('select count(*) from TABLE'); print ($ct2 - $ct1)," rows added in the last minute\n"; }