BaseDAO dao = (BaseDAO)itr.next();
try {
Util.RetryStrategy retry = null;
do {
try {
dao.createTable( conn );
break; // table created so break from retry loop
} catch ( Exception e ) {
// Exception will be log & re-throw if operation cannot be retry
if ( retry == null ) {
retry = new Util.RetryStrategy(mgr);