Viewing 15 posts - 361 through 375 (of 388 total)
Apparently Gail Shaw has given massive amounts of contributions in this regard and this article talks in depth about general performance tuning.
I think my issue was included in this article...
March 8, 2012 at 12:15 pm
Thanks Kevin
I think I should also get the devs to understand this topic.
December 28, 2011 at 9:20 am
Index added was non clustered index. Table was already clustered on auto increment ID as int.
The function in the WHERE clause was returning an integer based on if the record...
December 27, 2011 at 5:32 am
Just to reiterate or beat a dead horse, is_auto_close_on = 1 is bad.
As soon as no connections to db, db closes.
When connection is opened, then db has to start and...
October 6, 2011 at 5:12 am
Thanks guys.
I did a test and checked the index size when only [col2] and also when index = [col2,RID].
They are almost the same size where RID is clustered. difference...
September 29, 2011 at 8:07 am
great, then I can log a defect against all those indexes which explicitly include a clustered column as part of the non clustered index.
September 29, 2011 at 5:07 am
frfernan (9/29/2011)
September 29, 2011 at 2:25 am
VS2010 Load Test using WebTest
Basically, you create a functional test sample of work.
Since my application is a webApp, I then have to extract a value from the querystring which I...
September 28, 2011 at 6:01 am
Thanks Gail
September 28, 2011 at 2:45 am
Thanks Gail.
Would you even consider this as a way to do avoid a lookup to the table for col2,and 3?
September 28, 2011 at 2:36 am
That's a very interesting point and worth investigating. I was looking at some of the indexes on Friday; one of which has two columns that are bits. Is it...
September 26, 2011 at 8:14 am
Firstly, here is a script which should list all tables and records which are duplicated, PK is removed from this comparison.
So the script will dynamically group by all the columns...
September 25, 2011 at 10:54 pm
Reevaluate indexes. You may be carrying unnecessary baggage.
Run a script to start with, find duplicate indexes. Drop them.
Then look at the usage of remaining indexes.
If you have only updateson the...
September 22, 2011 at 6:50 am
My reason for creating a clustered index on RID is that
Where using the non clustered index for joins or queries, if the RID was an output of the query or...
September 13, 2011 at 11:51 pm
Excluded tables with primary keys, since they enforce unique constraint even if the index is not set as unique.
Additionally, this will run on the entire database.
The table name has been...
August 19, 2011 at 2:32 am
Viewing 15 posts - 361 through 375 (of 388 total)