SQL Server sp_configure 控制記憶體使用量

來源:互聯網
上載者:User

標籤: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 控制記憶體使用量

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.