}
public static boolean doHADBTablesExist() {
boolean result = true;
ServerContext serverContext = ApplicationServer.getServerContext();
SchemaUpdater updater =
serverContext.getPluggableFeatureFactory().getSchemaUpdater();
try {
//updater.init();
result = updater.doTablesExist();
} catch (SQLException ex) {
result = false;
} catch (ClassNotFoundException ex1) {
result = false;
}