Skip to content

Instantly share code, notes, and snippets.

@nordineb
Created May 10, 2017 15:32
Show Gist options
  • Save nordineb/db8dcc258a24c27e24ff75df001f576a to your computer and use it in GitHub Desktop.
Save nordineb/db8dcc258a24c27e24ff75df001f576a to your computer and use it in GitHub Desktop.
REMINDER: SHRINK DATABASE
ALTER DATABASE MYDB SET RECOVERY SIMPLE
USE MYDB
DBCC SHRINKFILE ('MYDB_LOG', 1)
DBCC SHRINKFILE ('MYDB', 1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment