Viewing 15 posts - 16 through 30 (of 62 total)
So, I understand an index with a column in the wrong sort order will still be used? Please correct me if I'm wrong, I really want to understand this.
If it's...
February 11, 2013 at 11:19 am
So that means if column C is sorted in the wrong order, it won't be used by that one query?
February 11, 2013 at 9:55 am
Scott:
or maybe you specified DESC on one of the existing index keys?!
I did not, but would that make a difference? I didn't think the missing indexes dmv...
February 11, 2013 at 8:20 am
The indexes were identical.. I did create the index as recommended by the script, then I ran a duplicate indexes script, and yes, here they were, both old and new....
February 11, 2013 at 8:15 am
That's probably the only possible explanation.. I am surprised, I've used it extensilvely and it never happened before. Thanks!
February 8, 2013 at 3:17 pm
I have already asked for more disk space last week...
There are also several unused tables that I discovered, and I am fighting now to have them removed. Might not happen.
I...
January 24, 2013 at 3:43 pm
So you're saying since I can't use tempdb for sorting because I only have 81GB available, I should take care of that first..
Well, this is a large table, 99% of...
January 24, 2013 at 11:40 am
Well, it's not full, sorry, it just doesn't have enough room available (81 out of 84GB). It is not set to autogrow, it takes up 99% of a disk partition,...
January 24, 2013 at 10:50 am
TempDB seems to be always full, maybe I'll reboot first.. thanks!
January 24, 2013 at 10:21 am
never mind, teh log size is separat...
select
name,
cast((size/128.0) as int) as TotalSpaceInMB,
cast((cast(fileproperty(name, 'SpaceUsed') as int)/128.0) as int) as UsedSpaceInMB,
...
January 24, 2013 at 9:53 am
Smaller table on the test server? A build or rebuild of an index needs the full size of that index as free space, more if sort in tempDB is not...
January 24, 2013 at 9:46 am
For some reason, I thought you need the full space of the table only with ONLINE=ON. It didn't use that much on the test system.
Looks like I will have to...
January 23, 2013 at 4:16 pm
That's what I did, implement datetime as the clustered index and deal with fragmentation maybe on a daily (nightly) basis. Goes along with what Craig said as well, since I...
June 14, 2012 at 8:56 am
This is great post by Adam Machanic, I guess that's what I'll do, change settings and test...
June 13, 2012 at 3:23 pm
Viewing 15 posts - 16 through 30 (of 62 total)