Viewing 2 posts - 1 through 2 (of 2 total)
Thanks!
When I CAST the text field as a VARCHAR(MAX) I was able to locate the duplicate text field values.
WITH cte AS (
SELECT a.*,
ROW_NUMBER() OVER(PARTITION BY [varcharfield],CAST([textfield]...
February 1, 2016 at 1:45 pm
#1855815
Nice post! I have a problem looking for duplicates in a similar table with "text" fields. What would that SQL look like?
Thank you,
Bob
February 1, 2016 at 7:37 am
#1855678