Set max server memory in SQL Server Instance
Date: 04/06/2013
Categories: SQL Server
--show advanced options EXEC sys.sp_configure N'show advanced options', N'1' RECONFIGURE WITH OVERRIDE GO --set max server memory EXEC sys.sp_configure N'max server memory (MB)', N'15360' GO RECONFIGURE WITH OVERRIDE GO --disable advanced options EXEC sys.sp_configure N'show advanced options', N'0' RECONFIGURE WITH OVERRIDE GO
Leave a Reply