windows – 如何限制MS SQL Server内存使用?

前端之家收集整理的这篇文章主要介绍了windows – 如何限制MS SQL Server内存使用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我听说MS sql Server占用尽可能多的RAM来缓存结果.好吧,它没有为我们的小服务器的RAM留下足够的讨价还价空间.

如何更改设置以限制可以使用的RAM量?

Windows Server 2008上运行的MS sql Server.

How to configure memory options using SQL Server Management Studio开始:

Use the two server memory options,min server memory and max server memory,to reconfigure the amount of memory (in megabytes) managed by the sql Server Memory Manager for an instance of sql Server.

  1. In Object Explorer,right-click a server and select Properties.
  2. Click the Memory node.
  3. Under Server Memory Options,enter the amount that you want for Minimum server memory and Maximum server memory.

您也可以使用以下命令在T-sql中执行此操作(示例):

exec sp_configure 'max server memory',1024
reconfigure
原文链接:https://www.f2er.com/windows/370588.html

猜你在找的Windows相关文章