Find all duplicate entries that may be blocking query due to Primary Key (PK) violation
select employee_id, end_dttm, count(*) from employee_times group by employee_id, end_dttm having count(*) > 1;