I have a large database (90GB data, 70GB indexes) that's been slowly growing for the past year, and the growth/changes has caused a large amount of internal fragmentation not only of the indexes, but of the tables themselves.

It's easy to resolve the (large number of) very fragmented indexes - a REORGANIZE or REBUILD will take care of that, depending on how fragmented they are - but the only advice I can find on cleaning up actual table fragmentation is to add a clustered index to the table. I'd immediately drop it afterwards, as I don't want a clustered index on the table going forward, but is there another method of doing this without the clustered index? A "DBCC" command that will do this?

Thanks for your help.

link|improve this question

Why don't you want a clustered index? – Tom H. Jul 26 '10 at 16:45
Just adding a single "ID" Identity bigint column as a clustered index will not only solve your fragmentation problem, it will also probably make all your other indexes a LOT smaller. – Robin Day Jul 26 '10 at 16:47
There's no auto-incrementing key (and I can't add one, as this database is actually a replicated copy of our proprietary billing system), and every PK is a composite index of the first few table columns. Rows can be added or deleted at any place at the table, so there's nothing to build a clustered key based on without severely affecting the performance of the other queries we use. Though I suppose having a less-than-optimal clustered key is better than having 99.7% fragmentation on the 12GB tables... – rwmnau Jul 26 '10 at 16:48
2  
Have you done testing to confirm that a clustered index would severely impact performance? BTW, a clustered index does NOT have to be on a primary key. – Tom H. Jul 26 '10 at 17:19
@Tom H. - No, I've not done any testing, but I can't add anything at all to the schema of these tables, so a new auto-increment column is out of the question. I could create a clustered index on another column set, but with so much activity at random places in the table, and some tables 10's of GB long, data changes could at some point require moving a massive amount of data in order to make room, and the applications can't wait while this data is moved to make space for a new row in the clustered index (and the physical table). I'm looking more for a one-time (or scheduled) table defrag. – rwmnau Jul 26 '10 at 17:24
show 1 more comment
feedback

5 Answers

up vote 5 down vote accepted

Let's get some clarity, because this is a common problem, a serious issue for every company using SQL Server.

This problem, and the need for CREATE CLUSTERED INDEX, is misunderstood.

Agreed that having a permanent Clustered Index is better than not having one. But that is not the point, and it will lead into a long discussion anyway, so let's set that aside and focus on the posted question.

The point is, you have substantial fragmentation on the Heap. You keep calling it a "table", but there is no such thing at the physical data storage or structure level; a table is a logical concept, rendered physically as:

  • either the Heap plus all Nonclustered Indices plus Text/Image chains
  • or the Clustered Index plus all Nonclustered Indices plus Text/Image chains.

Heaps get badly fragmented; the more interspersed (random) Insert/Deletes/Updates there are, the more fragmentation.

There is no way to clean up the Heap, as is. MS does not provide a facility (other vendors do).

However, we know that Create Clustered Index rewrites and re-orders the Heap, completely. The method, or trick, therefore, is to Create Clustered Index only for the purpose of de-fragmenting the Heap, and drop it afterward. You need free space in the db of table_size x 1.25.

While you are at it, by all means, use FILLFACTOR, to reduce future fragmentation. The Heap will then take more allocated space, allowing for future Inserts, Deletes and row expansions due to Updates.

Note that there are three Levels of Fragmentation; this deals with Level III only, fragmentation within the Heap, which is causes by Lack of a Clustered Index

As a separate task, at some other time, you may wish to contemplate the implementation of a permanent Clustered Index, which eliminates fragmentation altogether ... but that is separate to the posted problem.

link|improve this answer
Can you look into my question stackoverflow.com/questions/3800732/… ? – WebMAOhist Nov 3 '10 at 4:39
While this doesn't give me a magic solution to my problem, it makes pretty clear that my problem is a result of a SQL Server limitation and adding a clustered index is the only way to "defragment" the heap. Thanks for your help. – rwmnau Jul 22 '11 at 15:48
feedback

The best solution I found so far, is provided by this guy: http://ola.hallengren.com/

You can fine tuned it for index optimization and statistics update

link|improve this answer
This set of backup scripts is complete insanity - it does pretty much everything. I'll check them out as I've never really liked the included SQL Maintenance Plan Wizard, but I've never found another solution I liked better. – rwmnau Nov 8 '10 at 15:41
feedback

You state that you add a clustered index to alleviate the table fragmentation, to then drop it immediately.

The clustered index removes fragmentation by sorting on the cluster key, but you say that this key would not be possible for future use. This begs the question: why defragment using this key at all?

It would make sense to create this clustered key and keep it, as you obviously want/need the data sorted that way. You say that data changes would incur data movement penalties that can't be borne; have you thought about creating the index with a lower FILLFACTOR than the default value? Depending upon data change patterns, you could benefit from something as low as 80%. You then have 20% 'unused' space per page, but the benefit of lower page splits when the clustered key values are changed.

Could that help you?

link|improve this answer
feedback

You can maybe compact the heap by running DBCC SHRINKFILE with NOTRUNCATE.

Based on comments, I see you haven't tested with a permenent clustered index.

To put this in perspective, we have database with 10 million new rows per day with clustered indexes on all tables. Deleted "gaps" will be removed via scheduled ALTER INDEX (and also forward pointers/page splits).

Your 12GB table may be 2GB after indexing: it merely has 12GB allocated but is massively fragmented too.

link|improve this answer
feedback

I understand your pain in being constrained by the design of a legacy design.

Have you the oppertunity to restore a backup of the table in question on another server and create a clustered index? It is very possible the clustered index if created on a set of narrow unique columns or an identity column will reduce the total table (data and index) size.

In one of my legacy apps all the data was accessed via views. I was able to modify the schema of the underlying table adding an identity column and a clustered index without effecting the application.

Another drawback of having the heap is the extra IO associated with any fowarded rows.

I found the article below effective when I was asked if there was any PROOF that we needed a clusted index permanently on the table

This article is by Microsoft

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.