前言
sqlserver2012 长时间运行的话会将服务器的内存占满
解决办法
通过界面设置
下图中设置最大服务器内存
通过执行脚本设置
需要先开发开启高级选项配置才能设置成功
设置完成之后将高级选择配置关闭,还原成跟之前一样
--可以配置高级选项
EXEC sp_configure 'show advanced option',1
reconfigure
gosp_configure 'min server memory', 0 --设置sql最小使用内存
RECONFIGURE
GOsp_configure 'max server memory', 4096 --设置sql最大使用内存,默认设置为欸4G
RECONFIGURE
GO--不可配置高级选项
EXEC sp_configure 'show advanced option',0
reconfigure
go