please help!
thanks
-Jay
I have found that in rare cases you can speed up a query
by specifying LOOP in the join. In my case, using the loop
removed a Lazy Spool and a costly sort from the plan.
hth
>.
>
normally is which Algorhtm should the Optimizer use to join two SETS?
LOOP is
well think of somkething like
for each row in the table 1
for each row in table 2
JOIN
loop
loop
NESTED LOOPS..
if one of the tables is small and the other one big, you might see LOOP
merge is good for almost all cases
and HASH, is good for intermidiate results...JOINS
"Jay" <jc...@ibes.com> wrote in message news:eU9CXlm#AHA.1412@tkmsftngp02...