Skip to content

Instantly share code, notes, and snippets.

@rhymeswithmogul
Created November 7, 2019 23:27
Show Gist options
  • Save rhymeswithmogul/b5b9a7f65f9530a96d3fb6f135c8cbfc to your computer and use it in GitHub Desktop.
Save rhymeswithmogul/b5b9a7f65f9530a96d3fb6f135c8cbfc to your computer and use it in GitHub Desktop.
Disable auto-close on all MSSQL databases in an instance (useful for backup software)
--You will get errors about master and tempdb; this is normal.
EXEC sp_MSforeachdb 'ALTER DATABASE [?] SET AUTO_CLOSE OFF WITH NO WAIT'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment