log.info("table '" + tableName + "' is already registered, will add directly an entry in the ENTRIES Table");
String destAttrName = "?";
if (destinations == null || destinations.length == 0)
destAttrName = "NULL";
String sql = "{? = call " + this.replPrefix + "check_tables(NULL,?,?,?," + destAttrName + ")}"; // name text, content text)
CallableStatement st = conn.prepareCall(sql);
st.setString(2, schema);
st.setString(3, tableName);
st.setString(4, ReplicationConstants.CREATE_ACTION);
if (destinations != null && destinations.length != 0) {
String post = "</desc>";