how to reduce susdb.mdf file size
-
Friday, October 22, 2010 1:31 PM
Hello all !
I have a susdb.mdf file 55 GB size.
How do I reduce the size of the db ?
Windows 2003 Server with SQL server 2005
Best Regards,
GadgetPC
All Replies
-
Friday, October 22, 2010 1:52 PM
You can use DBCC SHRINKFILE, however running it is generally not a good idea if you are going to need that space again in the near future. Shrinking is a bad idea for performance reasons because of the fragmentation it causes, plus when the file has to expand you take a big hit. If you are sure that your database file will not grow such huge in near future
using managemet studiohttp://technet.microsoft.com/en-us/library/ms190757.aspx
or T SQL
http://technet.microsoft.com/en-us/library/ms189493.aspx
Also, a must read on the subject
- Proposed As Answer by WeiLin QiaoModerator Tuesday, October 26, 2010 10:21 AM
- Marked As Answer by Tom Li - MSFTModerator Monday, November 08, 2010 1:54 AM
-
Friday, August 10, 2012 1:54 PM
This might help:
- Proposed As Answer by A. TheOne Friday, August 10, 2012 1:54 PM

