標籤:blog http 使用 ar strong 資料 sp c on
背景知識:
sp_configure 顯示或更改當前伺服器的全域配置設定(使用 sp_configure 可以顯示或更改伺服器層級的設定。)
查看 全域配置值
方法 1、execute sp_configure;直接查看所有。
方法 1、execute sp_configure @configname=‘Name‘;直接查看指定。
方法 2、儲存到表中以方便操作
第一步:建表
create table InstanceConfigure(
name nvarchar(35),
minimum int,
maximum int,
config_value int,
run_value int);
go
第二步:插入資料
insert into InstanceConfigure
execute sp_configure;
go
-----------------------------------------------------------------------------------------------------------------------------------------------------------
方法 1、
min server memory 是指sql server r 地址空間增長到這上值以後,就不會小於這個值。當啟動sql server時只申請所需要的記憶體。
execute sp_configure @configname = ‘min server memory (MB)‘,@configvalue = 100
reconfigure with override;
go
方法 2、
max server memory 控制 total server memory 的最大大小。也是通過sp_configure 配置;
方法 3、
set working set size 這個過時了,windows 以不再尊重這個參數。也是通過sp_configure 配置;
請不要用。
方法 4、
lock pages in memory
查看我的文章:
http://www.cnblogs.com/JiangLe/p/4008036.html
SQL Server sp_configure 控制記憶體使用量