Viewing 3 posts - 1 through 3 (of 3 total)
Since I have worked with Oracle I have removed duplicates using the rowid column. SQL Server has something similar but its an undocumented feature (might be changed without notice).
delete
from ...
October 8, 2013 at 1:38 am
#1656634
Thank you, a good information about how it works. I hoped there would be some way to run it in another mood so that the SSIS would wait to return...
August 15, 2013 at 12:11 am
#1641649
I found out that this statement
select *
from Job_Queue
where JobQueueID not in
(SELECT JobQueueID
from Payment
where JobQueueID is not null)
will get...
August 12, 2013 at 2:45 am
#1640481