Takeaway: Deleting columns does not reduce the width of a record (including new ones). Tables have to be rebuilt in order to reclaim space.
So I had the opportunity to talk to Michelle Ufford (SqlFool.com) last November after her PASS Summit Talk. We wondered what happens to the space taken by columns after they’ve been deleted. For example, you may be removing columns or altering columns in order to reduce a records’ width. The improved bytes/row (and rows/page) can provide a huge benefit to performance.
Michelle thought it was a great idea for a blog topic and so did I. But Michelle graciously agreed to let me be the one to write it up (I understand she’s busy this month). So here’s the main question: What does happen to the space taken by columns that have been deleted? The naive idea that SQL Server magically cleans it up is wrong, for example:
First I create a table with really inefficient columns:
CREATE TABLE NAME ( id INT IDENTITY PRIMARY KEY, FIRST CHAR(1000) NOT NULL, middle CHAR(1000) NOT NULL, LAST CHAR(1000) NOT NULL ); GO
INSERT NAME (FIRST, middle, LAST) VALUES ('Michael', 'J', 'Swart'); INSERT NAME (FIRST, middle, LAST) VALUES ('Lester', 'B', 'Pearson'); INSERT NAME (FIRST, middle, LAST) VALUES ('Mack', 'D', 'Knife'); INSERT NAME (FIRST, middle, LAST) VALUES ('Homer', 'J', 'Simpson');
These four rows I put in take up two data pages like this:

Remember, each page is 8 Kb long. So lets remove the middle column and right-size the others like this:
ALTER TABLE NAME DROP COLUMN Middle; ALTER TABLE NAME ALTER COLUMN FIRST VARCHAR(20) NOT NULL; ALTER TABLE NAME ALTER COLUMN LAST VARCHAR(20) NOT NULL; -- And add a couple rows for good measure: INSERT NAME (FIRST, LAST) VALUES ('Bartholomew', 'Simpson'); INSERT NAME (FIRST, LAST) VALUES ('Lisa', 'Simpson');
So things should look better right? Not quite! The old data pages haven’t changed at all and the new data looks just as bad:

What’s Happening
The action of dropping columns is not an operation that affects existing data. It’s a meta-data operation only. You can actually see this at work using the slightly undocumented view sys.system_internals_partition_columns. The is_dropped field indicates that the columns haven’t disappeared, they’ve just been marked as dropped:
SELECT t.name AS tablename, c.name AS columnname, ipc.* FROM sys.system_internals_partition_columns ipc join sys.partitions p ON ipc.partition_id = p.partition_id join sys.tables t ON t.OBJECT_ID = p.OBJECT_ID LEFT join sys.columns c ON c.OBJECT_ID = t.OBJECT_ID and c.column_id = ipc.partition_column_id WHERE t.name = 'NAME' ORDER BY c.column_id
So just how hard is it to get rid of columns?
How to Really Get Rid of Columns
It turns out that an index REBUILD is required (A REORGANIZE isn’t good enough). If you have have a maintenance plan it might eventually take care of this. Or you can do this explicitly:
ALTER INDEX ALL ON NAME REBUILD;
Things look much nicer now:

The information in the diagram above is hard to see, but it works out to about 200 rows per page as we had hoped. The column is truly deleted now which you can see using this query (once again):
SELECT t.name AS tablename, c.name AS columnname, ipc.* FROM sys.system_internals_partition_columns ipc join sys.partitions p ON ipc.partition_id = p.partition_id join sys.tables t ON t.OBJECT_ID = p.OBJECT_ID LEFT join sys.columns c ON c.OBJECT_ID = t.OBJECT_ID and c.column_id = ipc.partition_column_id WHERE t.name = 'NAME' ORDER BY c.column_id
Other Blogs have treated this topic before e.g.:
- Andras at Simple Talk last year.
- Kalen Delaney whose name is almost synonymous with SQL Internals looked at this in 2006.
But none of those have pictures of Samson, do they?
Update March 12, 2010: I just read chapter 30 in SQL Server MVP Deep Dives. The chapter is called Reusing space in a table. In it Joe Webb talks about a very similar scenario and talks recommends an approach of using DBCC CLEANTABLE. This is good for reclaiming space that was once used by variable-length columns. But it doesn’t work for the example I use in this post which uses fixed-length columns. It’s an important distinction because large columns are more often variable length than fixed length.


[...] Removing Columns Doesn’t Decrease Table Size – I read the title and I thought Michael Swart was pulling my leg. The fact that I learned something by reading this makes me think I’m not ready for the MCM program. I have moments like this whenever I read a bunch of blog posts in one sitting, and I’m glad Michael blogged this. [...]
Pingback by Things I Read This Week | Brent Ozar - Too Much Information — February 5, 2010 @ 8:30 am
Great info, Michael. This is not something I had realized. Thanks.
Comment by Mark Vaillancourt — February 5, 2010 @ 12:01 pm
It would be interesting to discuss what happens with heaps, too.
Comment by Mark Vaillancourt — February 5, 2010 @ 12:04 pm
Mark, that’s an excellent question.
A quick check tells me that it’s the same story for heaps as it is for indexed tables. Except for the part about rebuilding indexes:
ALTER INDEX ALL ON NAME REBUILD;
While this command doesn’t fail, it doesn’t have any affect at all (because there are no indexes to rebuild). With heaps, new rows are still huge. Dropped columns are still there. Even if the table has non-clustered indexes against heaps. The dropped columns are still there.
The point is is that the index rebuild does the trick only when a table has a clustered index.
To the problem of reclaiming space used by dropped columns in heaps, I don’t know what the solution is. One workaround is to create a clustered index for it. Even if it is temporary.
Comment by Michael J. Swart — February 5, 2010 @ 1:27 pm
Excellent stuff, Michael. Really informative.
Comment by Brad Schulz — February 5, 2010 @ 1:41 pm
This is why I love SQL Server, you really do learn something new every day.
Thanks for sharing.
Comment by John Sansom — February 6, 2010 @ 3:07 am
Mark, Brad, John, thanks for the feedback! It makes blogging worthwhile.
Comment by Michael J. Swart — February 6, 2010 @ 10:12 am
Thanks for the article; it was new and vital information. The only thing I can’t agree with is the caption on your graphic. For it wasn’t the hair but the Spirit of God that gave Samson power to tear down those columns.
See Judges 16:28-30:
And Samson called unto the LORD, and said, O Lord God, remember me, I pray thee, and strengthen me, I pray thee, only this once, O God, that I may be at once avenged of the Philistines for my two eyes. And Samson took hold of the two middle pillars upon which the house stood, and on which it was borne up, of the one with his right hand, and of the other with his left. And Samson said, Let me die with the Philistines. And he bowed himself with all his might; and the house fell upon the lords, and upon all the people that were therein. So the dead which he slew at his death were more than they which he slew in his life.
Comment by Benjamin Lotter — February 8, 2010 @ 9:59 am