// compare the data from the CSV to the local db data and see if we have conflicts
dc.setSQL("select s.velocity_var_name as velocity_name, "
+ "s.inode as local_inode, st.inode as remote_inode from structure s "
+ "join " + tempTableName + " st on s.velocity_var_name = st.velocity_var_name and s.inode <> st.inode");
List<Map<String,Object>> results = dc.loadObjectResults();
if(!results.isEmpty()) {
// if we have conflicts, lets create a table out of them
String INSERT_INTO_RESULTS_TABLE = "insert into " +resultsTableName+ " select s.velocity_var_name as velocity_name, "
+ "s.inode as local_inode, st.inode as remote_inode, '" + endpointId + "' from structure s "