Viewing 15 posts - 13,531 through 13,545 (of 18,923 total)
dbo.SpName
then in the inputparameter property, you enter all the needed parameters.
September 4, 2005 at 10:01 am
I might have to change my way of thinking on those questions... but still when someone asks how to do something in dynamic sql, I'll ALWAYS try to make them...
September 4, 2005 at 9:59 am
Select case when Surname like 'A%' then Surname + ', ' + FirstName
when FirstName like 'A%' then FirstName + ', ' + Surname
end
from....
BTW this is something that would be faster...
September 3, 2005 at 7:43 am
I'll make one for you Monday (can't test anything on this pc).
Do you need to know how many there are, or just find if there are upper case letters. ...
September 3, 2005 at 7:41 am
Nice plan... but it still requires changing every single proc. I think it would be simpler to just send the calling spid
.
September 3, 2005 at 7:31 am
Good point... I guess he'll have to tell me that for me to give that answer
.
September 2, 2005 at 5:46 pm
Ya index tuning should be a daily task... reindex all the tables that meet a set treshold so that you don't have to do 'em all at the same time.
September 2, 2005 at 3:10 pm
September 2, 2005 at 3:03 pm
It's already been said that it's possible, but this task should be done at the client.
September 2, 2005 at 3:02 pm
Please do not cross-post.
Finish the thread here :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=216775
September 2, 2005 at 2:27 pm
Please do not cross-post.
Finish the thread here :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=216775
September 2, 2005 at 2:27 pm
Let's put it that way... it's always cached untill it is dropped from the cache by the server, or when you recompile the sp (or change the definition). Also...
September 2, 2005 at 2:15 pm
NP. Almost every string manipulation is easier at the client side.
September 2, 2005 at 2:13 pm
Doh!! Forgot the easy fix : DBCC FREEPROCCACHE
the server was using a cached copy on some of those calls.
September 2, 2005 at 2:06 pm
Viewing 15 posts - 13,531 through 13,545 (of 18,923 total)