List<?> list = session.createSQLQuery(checkIndex).list();
if (String.valueOf(list.get(0)).equals("0")) {
System.out.println( "Creating Index AW_INDEX_" + columnIndexName +" ON " + tableName );
SQLQuery sqlQuery = session.createSQLQuery(newIndex);
sqlQuery.executeUpdate();
}
} catch (NoSuchFieldException e) {
e.printStackTrace();
} catch (SecurityException e) {