Viewing 15 posts - 196 through 210 (of 378 total)
The main idea of keeping everything in sequence is ofcourse always a performance issue as changing one record implicitly means an update to all following records, which is implicitly expensive...
February 10, 2011 at 8:30 am
mmarovic (2/2/2011)
February 3, 2011 at 2:46 am
Jeff Moden (1/25/2011)
WayneS (1/24/2011)
Well done Jeff on (yet another) great article. And well done to all that...
January 25, 2011 at 7:09 am
I DISCOVERED AN ERROR IN MY CODE HERE, SKEWING THE RESULTS, PLEASE IGNORE THIS PART OF MY CONTRIBUTION
(In one of the two datediffs, I used getDate() instead of "SomeDate" that...
January 21, 2011 at 5:05 am
I did some more testing and as it turns out, much of the cost in slower solutions is in dissecting a date multiple times and/or using an inefficient method. And...
January 21, 2011 at 4:44 am
Thanks again Jeff for the discussions you always seem to bring up among us.
Time to put in a few thoughts and findings of my own. As someone already observed, DATENAME...
January 21, 2011 at 3:36 am
I think RAID 5 must be burried.
It was once introduced when magnetic disks where still very expensive and capacity limited, while at the same time there was a need for...
January 10, 2011 at 1:53 am
To make matters worse:
Sometimes an expression in a select clause will be evaluated before filtering expressions in the where clause.
This means that if we have an expression in the select...
January 6, 2011 at 6:28 am
The article states the following:
First off, you need SQL Server Enterprise Edition or Developer Edition. None of the other editions of SQL Server 2005 or 2008 support partitioning. SQL Server...
December 14, 2010 at 8:59 am
Don't forget to first use: DBCC UPDATEUSAGE(0);
BOL says about this:
Reports and corrects pages and row count inaccuracies in the catalog views. These inaccuracies may cause incorrect space usage reports returned...
December 14, 2010 at 8:28 am
SwePeso (12/6/2010)
I tested the new Denali OFFSET/FETCH and I got the exact same number of reads for...
December 7, 2010 at 2:50 am
I can agree with your point of view where it concerns your own database usage, which I cannot see as typical of relational databases in general. Rebulding all data every...
November 15, 2010 at 7:30 am
vmssanthosh (11/15/2010)
I have a debate over this concept.
Foreign key and check constraints are referential integrity components. How we can say this will increase the query performance.
Yes it may increase...
November 15, 2010 at 6:52 am
pslavik (10/21/2010)
October 22, 2010 at 2:54 am
These days it is made easy to produce "something" really quick and thus cost efficient at first glance. The problem is that without common sense and care for details, what...
October 22, 2010 at 2:33 am
Viewing 15 posts - 196 through 210 (of 378 total)