Viewing 15 posts - 406 through 420 (of 812 total)
palotaiarpad (10/17/2013)
Is it a useful knowledge?
Yes, it is.
Sometimes, store procs run slow because of parameters sniffing and obsolete query plan.
If you recompile, store procs may run better.
October 17, 2013 at 1:32 am
DATALENGTH provides exact length of the field if it is fixed length. If the field is of variable length, it returns the length of the data in the field
It's...
October 11, 2013 at 1:08 am
Too much easy!
Thanks for TWO free points.
October 7, 2013 at 1:11 am
Ford Fairlane (10/3/2013)
Not a big fan of questions involving deprecated features, that never seem to go away.
+1
October 3, 2013 at 1:25 am
sknox (10/1/2013)
Guessed optimistically.
Got it wrong.
Can anyone explain why this should still be around when CLR has been available to replace its functionality since...
October 1, 2013 at 8:12 am
I think that extended procedures are unremovable, also, if Microsoft discourages their use.
October 1, 2013 at 4:31 am
Be aware of case:
DECLARE @STR VARCHAR(8000) = N'SELECT * FROM sys.objects'
EXECUTE SP_EXECUTESQL @STR
It should be:
DECLARE @STR VARCHAR(8000) = N'SELECT * FROM sys.objects'
EXECUTE sp_executesql
September 26, 2013 at 12:45 am
Viewing 15 posts - 406 through 420 (of 812 total)