Viewing 15 posts - 1 through 15 (of 29 total)
A mentor of mine many years ago told me that to move up in an organization two things have to exist at the same time. One is an open position...
November 1, 2023 at 8:10 pm
Here is an sql function implementation of the Levenshtein Difference function. I am posting it with the statement that it is not my original code, but I am certain that...
August 10, 2017 at 1:22 pm
This is an example of why every developer and especially every project manager should be required to read "The Mythical Man-Month" by Fred Brooks, subtitled Essays On Software Engineering. ...
June 3, 2016 at 9:16 am
This function will silently fail (no error msg) if the object you are searching for is new and does not yet appear in the object tree. Refreshing the...
October 14, 2015 at 9:15 am
Thanks for the script
Here's a minor enhancement
-- split data into size and filename
SELECT ROW_NUMBER() OVER ( ORDER BY Files DESC ) AS Row
...
May 27, 2015 at 8:56 am
Thanks for letting me know it not something I'm doing wrong
April 7, 2011 at 2:23 pm
Both processor affinity masks are Autoset and max worker threads is 0 (let server determine)
Max Degree of parallelism is 0 and cost threshold for parallelism is 5 ...
April 7, 2011 at 9:12 am
In management studio object explorer, there is an option to filter which objects are displayed. The limitations I'm trying to get past are in setting up that filter....
November 2, 2010 at 8:34 am
Not getting into the discussion of the specific querys mentioned, but rather the general topic of the editorial. This erronious line of thinking is not exactly new, please...
December 15, 2009 at 11:56 am
Lynn - yes the parallel plan is listed as having a lower cost, however it doesn't.
Gail said to run the query in grid mode so that's what...
May 22, 2009 at 3:11 pm
Here is it first with the hint then without hint
May 22, 2009 at 2:56 pm
I'd be interested to see what happens if you tell the optimizer to not use parallelism if perhaps it then uses the non-clustered index.
could try adding this to the end...
May 22, 2009 at 10:07 am
I am not an expert in this, but couldn't the Index fragmentation and the fact that the query is trying to retrieve all columns make the query engine to...
May 22, 2009 at 9:58 am
OK here's the text version of the plans. If anyone can tell me how I can get the graphical version into the forum, I try
(FYI the plan text has...
May 22, 2009 at 9:47 am
To include single quotation marks in the text of an insert statement, you need to replace the single quotation mark with two single quotation marks. (NOT a double quote...
March 31, 2009 at 9:01 am
Viewing 15 posts - 1 through 15 (of 29 total)