SQL配置

--设置SQL配置为高级选项模式

sp_configure 'show advanced options',1
RECONFIGURE

--设置SQL最大可用内存为8G

sp_configure 'max server memory', 8192
RECONFIGURE

原文地址:https://www.cnblogs.com/shijun/p/2536653.html