Last active
December 16, 2015 16:49
-
-
Save vansha/5466002 to your computer and use it in GitHub Desktop.
Quickly Remove all connections to database (to be able to restore it). (tanks to @denisreznik)
This file contains 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
ALTER DATABASE <dbname> SET OFFLINE WITH ROLLBACK IMMEDIATE | |
GO | |
ALTER DATABASE <dbname> SET MULTI_USER | |
GO | |
ALTER DATABASE <dbname> SET ONLINE | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment