Created
June 14, 2012 14:08
-
-
Save Mpdreamz/2930525 to your computer and use it in GitHub Desktop.
shrink sql files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE MyDb | |
ALTER DATABASE MyDb SET RECOVERY SIMPLE | |
go | |
DBCC SHRINKFILE(MyDb) | |
DBCC SHRINKFILE(MyDb_log) | |
go | |
EXEC sp_helpdb MyDb | |
go | |
ALTER DATABASE MyDb SET RECOVERY FULL | |
go |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment