Is there any difference in performance when you break down a stored procedure into multiple procedures instead of having a big procedure?!
wich one is faster?!
for example:
mainSP
callSP1
callSP2
callSP3
end;
rather than
SP
....
.....
....
Thanks guys.