Viewing post 1 (of 1 total)
/*
Delete rows that have a duplicate pathhash value and are older than the newest ID (ID column is ascending INT)
*/
;with DuplicateCandidateRows
as
(
select Id, row_number() over (partition by pathhash order by...
December 5, 2013 at 9:44 am
#1671203