Viewing 15 posts - 16 through 30 (of 57 total)
happycat59 (11/3/2010)
Not only is the original article of interest (and it is great to have someone prepared to write about their findings...thanks Terry)
Does no one actually care the entire article...
November 3, 2010 at 7:37 pm
Adam Machanic (11/2/2010)
david.avraamides (11/1/2010)
November 2, 2010 at 8:29 am
Paul Muharsky-474732 (11/1/2010)
November 1, 2010 at 8:30 pm
jpenniman (11/1/2010)
Did you clear the buffers between tests? Using: dbcc dropcleanbuffers. If not, it would explain your "performance gain"
His illusory performance gain is explained entirely by the fact...
November 1, 2010 at 2:34 pm
UMG Developer (11/1/2010)
You might as well make the query an INNER join so that it is more readable, you get the same results:
Actually, that doesn't give the same results either....
November 1, 2010 at 12:32 pm
david.avraamides (11/1/2010)
I would consider using a sentinel date such as the maximum T-SQL datetime (9999-12-31) for two reasons: 1) your queries become simpler since you don't always need that "or...
November 1, 2010 at 9:24 am
Terry,
Here's a short, simple script that shows your "improved" query doesn't yield the same results as the original. The first query returns 3 rows; the second only...
November 1, 2010 at 9:18 am
terrance.steadman (11/1/2010)
November 1, 2010 at 9:04 am
First of all, did you look at the query plans between the two approaches? Or flush caches?
Secondly, why use a boolean flag when the below approach is...
November 1, 2010 at 8:01 am
Robert Frasca (10/27/2010)
When I'm data modeling, I don't consider existing tables in a schema to be "tables". I consider them to be "entities".
When I'm standing in the...
October 27, 2010 at 10:31 am
Robert Frasca (10/27/2010)
Since when? With all due respect that's pretty much a nonsensical statement. What difference does it make whether it's a new schema or an existing one?...
October 27, 2010 at 8:30 am
TheMOTU (10/26/2010)
October 26, 2010 at 8:12 pm
ta.bu.shi.da.yu (10/26/2010)
October 26, 2010 at 3:50 pm
Robert Frasca (10/26/2010)
Tables are the product of normalization.
True-- when starting from a clean slate. In practice, the word "normalization" has come to mean aligning an existing schema with the...
October 26, 2010 at 2:46 pm
I'll give a somewhat more realistic example. Say you have a chain of bookstores, that sell product from different publishers, and each specializing in one or more genres. ...
October 26, 2010 at 9:15 am
Viewing 15 posts - 16 through 30 (of 57 total)