I\'m dropping out massive numbers of tables out of a SQL Server 2005 database. How do I shrink the database - assuming I\'m not replacing the data or the tables? I\'m archiv
You can use the DBCC SHRINKDATABASE
command, or you can right-click the database, Tasks, Shrink, Database.
DBCC Shrinkdatabase(0) -- Currently selected database
or
DBCC Shrinkdatabase(<databasename>) -- Named database
However, shrinking files will likely fragment your tables, particularly larger onces, as contents of tables get moved about within the file, so once shrunk it's a good idea to defragment your tables. This, of course, will make your files grow again, but probably not so large as they were before you dropped your old tables. (Err, that assumes that the dropped tables contained large quantities of data...)