Viewing 7 posts - 1 through 7 (of 7 total)
Me too, have been running this on SQL 2008R2 - 2014.
Only issue I have seen is if a legacy procedure has been doing a mondo-sized select-into.
The execution just hangs. ...
May 29, 2016 at 12:04 am
This is most curious.
I have been using this for quite a while.
What MS SQL Server version are you using?
May 28, 2016 at 11:21 pm
David McKinney (3/25/2014)
SELECT*
FROM(SELECT*
,count(1) OVER (PARTITION BY ID) AS versions
...
March 26, 2014 at 3:15 pm
thank you for your explanation.
having rows in the source that do not exist in the target as you describe is precisely why the join exists and the test...
March 25, 2014 at 5:28 am
Without the join, the except statement would also return rows in the source that do not exist in the target as well as those that exist (by id) in both...
March 25, 2014 at 5:22 am
Where I have been using this is to keep read-only data synchronized between two areas by their primary key, so I do not currently have a scenario like this. ...
March 25, 2014 at 3:39 am
Viewing 7 posts - 1 through 7 (of 7 total)