Skip to content

Instantly share code, notes, and snippets.

@Mpdreamz
Created November 28, 2012 14:41
Show Gist options
  • Save Mpdreamz/4161717 to your computer and use it in GitHub Desktop.
Save Mpdreamz/4161717 to your computer and use it in GitHub Desktop.
Set maximum memory usage for MSSQL
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