--设置SQL配置为高级选项模式
sp_configure 'show advanced options',1
RECONFIGURE
--设置SQL最大可用内存为8G
sp_configure 'max server memory', 8192
RECONFIGURE
--设置SQL配置为高级选项模式
sp_configure 'show advanced options',1
RECONFIGURE
--设置SQL最大可用内存为8G
sp_configure 'max server memory', 8192
RECONFIGURE
转载于:https://www.cnblogs.com/shijun/archive/2012/06/05/2536653.html