Viewing 4 posts - 1 through 5 (of 5 total)
It's not yet all 55 million rows, it occurs near 100 K records.
I want to remove duplicates from this kind of data (100K) out of 55 millions.
May 26, 2011 at 11:54 am
Here is the script
--INPUT
CREATE TABLE #TMP (NAME_1 VARCHAR(300))
INSERT INTO #TMP VALUES ('DR AARON SASAKI SASAKI AARON MD')
INSERT INTO #TMP VALUES ('DR ALBERT LUGO ALBERTO LUGO DMD PC')
--OUTPUT
I would like...
May 26, 2011 at 11:49 am
Viewing 4 posts - 1 through 5 (of 5 total)