Created
November 28, 2012 14:41
-
-
Save Mpdreamz/4161717 to your computer and use it in GitHub Desktop.
Set maximum memory usage for MSSQL
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
EXEC sys.sp_configure N'show advanced options', N'1' RECONFIGURE WITH OVERRIDE | |
GO | |
EXEC sys.sp_configure N'max server memory (MB)', N'2000' | |
GO | |
RECONFIGURE WITH OVERRIDE | |
GO | |
EXEC sys.sp_configure N'show advanced options', N'0' RECONFIGURE WITH OVERRIDE | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment