Limit MS SQL Server memory

USE master
EXEC sp_configure ‘show advanced options’, 1
RECONFIGURE WITH OVERRIDE
EXEC
sp_configure ‘max server memory (MB)’, 4096
RECONFIGURE WITH OVERRIDE
EXEC
sp_configure ‘show advanced options’, 0
RECONFIGURE WITH OVERRIDE

Leave a Reply

Your email address will not be published. Required fields are marked *