Viewing 8 posts - 1 through 8 (of 8 total)
Mike (4/1/2009)
April 1, 2009 at 12:50 pm
Mike (3/25/2009)
SELECT
M.Surname,
M.GivenName,
A.StreetNumber,
...
April 1, 2009 at 12:10 pm
Thanks Mike. I'll try out your suggestion tomorrow and will get back to you.
March 25, 2009 at 1:57 pm
Since I got them, I might as well post some of my test results:
Clustered Index on MemberID, index on StreetNumber, index on StreetName
Execution Plan: select, nested loop, index seek on...
March 25, 2009 at 1:55 pm
How many ways can you skin a cat? I've been testing the join with a number of different index combinations and I haven't found a clear cut winner. I have...
March 25, 2009 at 1:18 pm
Mike, thanks for all of your help. You'll see below that we're on the right track!
You may want to check on the IO's for these queries to get a better...
March 25, 2009 at 9:40 am
I have another example that demonstrates this issue. Take the following query:
SELECT
M.Surname,
M.GivenName,
A.StreetName
FROM
Member AS M
...
March 24, 2009 at 2:43 pm
Thanks for your response Mike.
Try updating the statistics on that table and post the results.
Update statistics member with fullscan
I tried this and ran it again. The execution plan remains unchanged....
March 24, 2009 at 2:27 pm
Viewing 8 posts - 1 through 8 (of 8 total)