Viewing 4 posts - 1 through 4 (of 4 total)
Thank you for the answer, Claire.
I came to a similar conclusion after a bit of googling, but you were faster.
April 8, 2014 at 7:33 am
Just wondering what the grand-masters will say about a checksum solution?
From what I know about checksums they are pretty reliable way to tell one set from the other... Any...
April 8, 2014 at 5:51 am
I wonder if checksum could be an alternative to a two-step process suggested by the article?
Something to the effect:
; WITH CTE
as (
SELECT worker_id,
CHECKSUM_AGG(CHECKSUM(rate_code)) as chk
FROM #worker_rate
GROUP BY worker_id...
April 8, 2014 at 5:43 am
Here's a good reference article.
Group Islands of Contiguous Dates (SQL Spackle)
October 6, 2012 at 6:31 am
Viewing 4 posts - 1 through 4 (of 4 total)