java.sql.BatchUpdateException: Duplicate entry 'XXXXX' for key '[field name]' on task recordsIssue When loading any task record there are non consistent amount of errors popping up on the top of the record that state: java.sql.BatchUpdateException: Duplicate entry 'XXXXX' for key '[field name]' on task records Where 'XXXXX' is the data within the field name. An example of this could be: java.sql.BatchUpdateException: Duplicate entry 'Default' for key 'title' on task recordsCauseThis would denote that during the batch update there were two or more records where the title field had two entries of Default.ResolutionFind and delete the duplicate record(s).