I inhereited a database with tables with many nvarchar columns. The tables were getting fairly large, and I decided to change the datatypes to varchar to cut storage because we do not use international characters. The "data space" on the table (Right-click, then "Properties") has not changed. However, if I copy this table into a new table, the data space used there is about 60% the size of the original table.

I have used 'DBCC CLEANTABLE' in other instances to reclaim space after DROPPING a variable-length column. But this doesn't seem to work when CHANGING variable length data types. How do I go about getting this space back?

For those not familiar with DBCC CLEANTABLE, MS has a good article on it with sample code against AdventureWorks.

http://msdn.microsoft.com/en-us/library/ms174418(SQL.90).aspx

link|improve this question
Is space really that big of an issue that you need to be worrying about such things? – Mark Canlas Jun 2 '09 at 14:46
feedback

2 Answers

up vote 3 down vote accepted

Rebuild the clustered index if the DBCC does not work.

link|improve this answer
@gbn +1: This will do the trick. – John Sansom Jun 2 '09 at 15:59
That seemed to do the trick! Thanks. – DBA_0point5 Jun 8 '09 at 14:42
feedback

As BOL specifies CLEANTABLE only free's up pages from variable length columns. Your databse is probably fragmented, which occurs normally during database operation. It looks like SQL Server considers a fragmented page as being in use and does not display it as space available (btw sp_spaceused calls this unallocated space)

You can see how fragmented your tables are with DBCC SHOWCONTIG.

By re-building all the indexes in your database, you will get rid of fragmentation, which is pretty much what happens when you copy this data somewhere else.

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.