Viewing 15 posts - 2,581 through 2,595 (of 6,486 total)
The most direct way I know of is to look at the "Object Execution Statistics". It will give you execution stats on all executable objects including among others, how...
September 17, 2008 at 1:01 pm
Thanks for the feedback!
Just remember - they're EVIL!!!! (cursors) 😀
September 17, 2008 at 7:40 am
You should be getting a syntax error based on your syntax, since you are missing a quote in the sp_send_dbmail call......
September 16, 2008 at 3:59 pm
I do know for a fact that there are several on this board. I won't speak for them, but I wouldn't be surprised if you should hear from a...
September 16, 2008 at 3:55 pm
Welcome to the hell we call...cursors.
Cursors will torpedo your performance faster than damn near anything else I can think of. Since SQL Server is built to apply changes in...
September 16, 2008 at 3:53 pm
Grant Fritchey (9/15/2008)
Matt Miller (9/15/2008)
September 15, 2008 at 4:18 pm
...and again (like Grant was trying to say) - if you were to replace #AD In Lynn Pettis' example above with the query you use to create it, you wouldn't...
September 15, 2008 at 3:42 pm
I'd just expand the package a little, using a conditional split. Assuming your condition is true then exit, otherwise go down the brank that has all of the preexisting...
September 15, 2008 at 11:43 am
Looks to me that you just have to move the parenthesis, as in:
ISNULL(DC_P_ACTIVE) ? FALSE : DC_P_ACTIVE
September 15, 2008 at 11:24 am
Grant Fritchey (9/15/2008)
Jeff Moden (9/15/2008)
September 15, 2008 at 10:35 am
Jeff Moden (9/15/2008)
Grant Fritchey (9/15/2008)
September 15, 2008 at 10:18 am
Agreed (not much in the way of "good" automated code review).
that being said - given the number of objects you need to review - it may be worth focusing in...
September 15, 2008 at 9:00 am
garethmann101 (9/15/2008)
Ok but will the B-tree structure be less efficient with string rather than numeric data types?
A B-tree is a B-tree. It's not an easy question to answer, since...
September 15, 2008 at 8:57 am
Ron Kunce (9/15/2008)
September 15, 2008 at 8:42 am
garethmann101 (9/15/2008)
But one final concern:
If...
September 15, 2008 at 8:16 am
Viewing 15 posts - 2,581 through 2,595 (of 6,486 total)