Viewing 3 posts - 1 through 4 (of 4 total)
Thanks heaps.
That's exactly what I've been looking for.
September 28, 2005 at 5:19 pm
Here's what I went with:
insert into tbl_NoProfile ([FileName], SourceZIP, FilePath, PKZIPID)
select JustTheName, SourceZIPFile, [FileName], [ID]
from tbl_PKZIPAnalysis
WHERE NOT EXISTS
(SELECT [ID]
FROM tbl_Profiles
WHERE tbl_PKZIPAnalysis.JustTheName = tbl_Profiles.[FileName])
(77503 row(s) affected) - 58...
April 7, 2005 at 5:39 pm
Thanks for your suggestion.
However, I have a 800K row table and a 680K row table, and I'm working with an under-specced mssql2k server. It takes ~10 secs just to do...
April 7, 2005 at 6:00 am
Viewing 3 posts - 1 through 4 (of 4 total)