In this article, let’s understand the Minimum and Maximum server memory settings of SQL Server. The min server memory and max server memory configuration options establish upper and lower limits to the amount of memory used by the buffer pool of the SQL Server Database Engine. The buffer pool starts with only the memory required to initialize. As the workload increases, it keeps acquiring the memory required to support the workload.

When you peek into the SQL Server box for memory, you almost always find it is hogging all the available memory. This is because SQL Server is given the freedom to do so. The default Memory setting on SQL Server is as shown in the figure below; the min server memory is 0 and the max server memory is 2147483647 MB; that is the equivalent of nearly 2 PB. This is huge and hence will eat up all of the available memory. Though, SQL Server changes its memory requirements dynamically based on available system resources.

The maximum memory needs to be changed based on what other instances are installed on that server for other applications and the available RAM. Generally speaking, on a machine where there are no other applications apart from SQL Server, 75% of the maximum available RAM should be allocated for SQL Server. So if you have a 16GB RAM machine, 75% of 16 = 12 GB should be allocated as the maximum memory to SQL Server and the remaining will be used by operating systems processes and other processes.
Minimum memory is also an important setting. If the operating system needs to reclaim memory from SQL Server, it will request that SQL Server release memory. SQL Server will release the memory back to the Operating System until the amount of memory in use reaches the minimum server setting that is 0 by default. So if in the case that there is a huge file that needs to be copied then the operating system will keep claiming memory until SQL Server is allowed to release memory. This makes SharePoint performance slower. Hence, the minimum memory setting also needs to be changed to at least 50% of the available RAM. So if you have a 16GB RAM machine, 50% of 16 = 8 GB should be allocated as the minimum memory to SQL Server.
The Min server memory setting is used to guarantee a minimum amount of memory available to the SQL Server Memory Manager for an instance of SQL Server. SQL Server will not immediately allocate the amount of memory specified in min server memory on startup, neither will it take up all the min server memory setting value. If SQL Server is able to run on a lesser amount of memory then it will do so. But, after memory usage has reached this value due to client load, SQL Server cannot free memory unless the value of min server memory is reduced.
If the setting for both min server memory and max server memory is the same, then once the memory allocated to the SQL Server reaches that value, the Database Engine stops dynamically freeing and acquiring memory for the buffer pool.
On a SQL Server machine where multiple instances are loaded, for Max server memory setting, establish maximum settings for each instance, being cognizant of the fact that the total allowance is not more than the total physical memory of the machine. You might want to provide each instance of memory proportional to its expected workload or database size. This approach has the advantage that when new processes or instances start up, free memory will be available to them immediately. The drawback is that if you are not running all of the instances, none of the running instances will be able to utilize the remaining free memory.
On a SQL Server machine where multiple instances are loaded, for Min server memory setting, establish minimum settings for each instance, so that the sum of these minimums is 1-2 GB less than the total physical memory on your machine. Again, you may establish these minimums proportionately to the expected load of that instance.
This approach has the advantage that if not all instances are running at the same time then the ones that are running can use the remaining free memory. This approach is also useful when there is another memory-intensive process on the computer, since it would insure that SQL Server would at least get a reasonable amount of memory. The drawback is that when a new instance or any other process starts, it may take some time for the running instances to release memory, especially if they must write modified pages back to their databases to do so.

Server Memory Server Configuration Options
In the next article we will see some more SQL Server Settings relevant to SharePoint performance.

sp_configure 'show advanced options', 1;

GO

RECONFIGURE WITH OVERRIDE;

GO

sp_configure 'max degree of parallelism', 1;

GO

RECONFIGURE WITH OVERRIDE;

GO

sp_configure 'max server memory', 12288; --12*1024

GO

RECONFIGURE WITH OVERRIDE;

GO

sp_configure 'min server memory', 8192; --8*1024

GO

RECONFIGURE WITH OVERRIDE;

GO

Sharepoint 性能之SQL Server内存设置的更多相关文章

  1. SQL Server内存性能分析

    内存概念: Working Set = Private Bytes + Shared Memory Working Set:某个进程的地址空间中,存放在物理内存的那一部分 Private Bytes: ...

  2. SQL Server内存遭遇操作系统进程压榨案例

    场景: 最近一台DB服务器偶尔出现CPU报警,我的邮件报警阈(请读yù)值设置的是15%,开始时没当回事,以为是有什么统计类的查询,后来越来越频繁. 探索: 我决定来查一下,究竟是什么在作怪,我排查的 ...

  3. Sql Server 内存相关计数器以及内存压力诊断

    在数据库服务器中,内存是数据库对外提供服务最重要的资源之一, 不仅仅是Sql Server,包括其他数据库,比如Oracle,MySQL等,都是一类非常喜欢内存的应用. 在Sql Server服务器中 ...

  4. 人人都是 DBA(IV)SQL Server 内存管理

    SQL Server 的内存管理是一个庞大的主题,涉及特别多的概念和技术,例如常见的 Plan Cache.Buffer Pool.Memory Clerks 等.本文仅是管中窥豹,描述常见的内存管理 ...

  5. SQL Server内存理解的误区

    SQL Server内存理解 内存的读写速度要远远大于磁盘,对于数据库而言,会充分利用内存的这种优势,将数据尽可能多地从磁盘缓存到内存中,从而使数据库可以直接从内存中读写数据,减少对机械磁盘的IO请求 ...

  6. SQL SERVER 内存分配及常见内存问题 简介

    一.问题: 1.SQL Server 所占用内存数量从启动以后就不断地增加: 首先,作为成熟的产品,内存溢出的机会微乎其微.对此要了解SQL SERVER与windows是如何协调.共享内存.并且SQ ...

  7. SQL Server 内存相关博文

    Don’t confuse error 823 and error 832 本文大意:      错误832:           A page that should have been const ...

  8. SQL Server 内存中OLTP内部机制概述(二)

    ----------------------------我是分割线------------------------------- 本文翻译自微软白皮书<SQL Server In-Memory ...

  9. SQL SERVER 内存分配及常见内存问题(1)——简介

    原文:SQL SERVER 内存分配及常见内存问题(1)--简介 一.问题: 1.SQL Server 所占用内存数量从启动以后就不断地增加: 首先,作为成熟的产品,内存溢出的机会微乎其微.对此要了解 ...

随机推荐

  1. Random快速产生相同随机数的原因及解决方案

    老生常谈,还是那三句话: 学历代表你的过去,能力代表你的现在,学习代表你的将来 十年河东,十年河西,莫欺少年穷 学无止境,精益求精 问题描述:很多时候我们可能需要在极短的时间内生成大量的随机数,但是你 ...

  2. 【JVM.4】调优案例分析与实战

    之前已经介绍过处理Java虚拟机内存问题的知识与工具,在处理实际项目的问题时,除了知识与工具外,经验同样是一个很重要的因素.本章会介绍一些具有代表性的案例. 本章的内容推荐还是原文全篇看完的好,实在不 ...

  3. 跨平台、跨语言应用开发,Elements 介绍

    目录 1,Elements 介绍 2,Elements 版本 3,Elements 能干嘛 4,Elements  IDES 5,Elements 工具 1,Elements 介绍 RemObject ...

  4. [转载]sql 盲注之正则表达式攻击

    [转载]sql 盲注之正则表达式攻击 -----------------------------------------MYSQL 5+-------------------------------- ...

  5. NSCache的简单使用

    简介 1)NSCache 是苹果官方提供的缓存类,用法与 NSMutableDictionary 的用法很相似,在 AFNetworking 和 SDWebImage 中,使用它来管理缓存. 2)NS ...

  6. 个人作业 Last

    对M1/M2阶段的总结 M1阶段的总结反思见我以前的博客,我以前曾经写过.现附上链接.http://www.cnblogs.com/jirufeng/p/4990245.html M2阶段主要是对我们 ...

  7. 数学建模-lingo使用

    1.安装启动,软件下载地址:http://pc.xzstatic.com/2017/06/LINGO14 .zip.此为免安装版,打开后双击Lingo11.exe即可启动软件. 2.示例:某商品单位成 ...

  8. The Golden Age CodeForces - 813B (数学+枚举)

    Unlucky year in Berland is such a year that its number n can be represented as n = xa + yb, where a  ...

  9. [2017BUAA软工]个人项目:数独

    一.项目地址 https://github.com/Slontia/Sudoku 附加作业(GUI):https://github.com/Slontia/SudokuGUI 二.开发时间 PSP2. ...

  10. Eclipse版本列表

    https://wiki.eclipse.org/Older_Versions_Of_Eclipse http://blog.csdn.net/jaycee110905/article/details ...