Created
March 25, 2014 10:02
-
-
Save hanssens/9758460 to your computer and use it in GitHub Desktop.
Reset SQL's LocalDB, after corrupt rights or other problems.
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
# After problems with a company-wide ActiveDirectory shaker, all (local) SQL Server instances were FUBAR. | |
# This 'resets' the LocalDB sql instance. | |
sqllocaldb stop "v11.0" -k | |
sqllocaldb delete "v11.0" | |
sqllocaldb create "v11.0" | |
sqllocaldb start "v11.0" |
Awesome, I was a few seconds short of punching my screen....
Thanks
Awesome, I was a few seconds short of punching my screen....
same lol
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you! ;)