I have two data sets with date/time (sort of, more on that later) that I need to compare and check to see if the new data and the reference table time are correct or if they're not in sync. If they're not in sync then they need to be passed on for investigation.
Here is the scenario:
New data
| Unique ID | TimeDifference |
| AAAA | 1860:00:33:18 |
| BBBB | 0:16:00:45 |
| CCCC | 0:00:10:14 |
| DDDD | 0:00:00:45 |
Reference Table
| UniqueID | KnownDifference |
| AAAA | 15 |
| BBBB | 35 |
| DDDD | 20 |
New Data comes in always as a String and represents days:hours:mins:secs in a dddd:hh:mm:ss
Reference data is a integer represents seconds
I need a way to convert both to a format where they can be compared. Mainly looking for anything >= 2 second difference from the reference table. But with it stretching into days and sometimes kicking out over a thousand days! I need to account for those too.