/**
* Do the necessary checks to see if database is in consistent state
*/
public void allChecks() throws Exception {
OEChecks checks = new OEChecks();
checks.initialize(new HandleCheckError(), getConnection(), scale);
long start = System.currentTimeMillis();
checks.checkAllRowCounts();
long stop = System.currentTimeMillis();
System.out.println("Time to do checks (ms)=" + (stop - start));
}