Viewing 5 posts - 1 through 5 (of 5 total)
This also can happen if at least on one of the tables your check constraint was created WITH NOCHECK.
March 31, 2015 at 12:32 pm
More over, what should I do if I need to consolidate more tables in the future?
You could insert your top 20 ActiveDirectory records into a temp table
and UNION separate selects...
February 26, 2010 at 7:27 am
Dave's query also can give you incorrect results because of the LEFT joins: you can get records where w.workphonenumber AS phone, w.emailaddress AS email,w2.workphonenumber AS phone, w2.emailaddress AS email ARE...
February 25, 2010 at 6:29 pm
1) the killing you SCAN on WhitePaper is performed too many times because of the Nested Loop join used, so try adding :
OPTION(HASH JOIN, MERGE JOIN)
that will result in...
February 25, 2010 at 7:56 am
it could be a descent article had it been written 2 years ago.
June 16, 2008 at 6:49 am
Viewing 5 posts - 1 through 5 (of 5 total)