Viewing 2 posts - 1 through 2 (of 2 total)
You could try this neat bit of code. Again you would have to define in your select statement what constitutes a duplicate;-
WITH tblTemp as
(
SELECT ROW_NUMBER() Over(PARTITION BY C.contactname ORDER BY...
January 31, 2016 at 9:56 pm
#1855605
I just spent a whole weekend on this problem. My CSV file contains text data contained within double quotes, eg "blah",1,1/10/2011,"blah" and numeric and date data. All fields are delimited...
October 22, 2011 at 11:24 pm
#1398416