昨天网上一网友说,由于他同事误将max server memory设置为10M后,SQL Server数据库登录不了,当时我简单测试了一下,今天有空就顺手将整个过程整理一下,记录在此。

 

在SSMS的UI界面设置max server memory,即使你设置为10M大小,但是它会悄悄默认修改为128M,你用Profile跟踪或者设置后会发现,它偷偷修改了你的设置值(改为了128M),

EXEC sys.sp_configure N'max server memory (MB)', N'128'
GO
RECONFIGURE WITH OVERRIDE
GO
 
Configuration option 'max server memory (MB)' changed from 4096 to 128. Run the RECONFIGURE statement to install.

相关文章:

  • 2021-07-27
  • 2022-01-31
  • 2021-11-05
  • 2022-12-23
  • 2022-12-23
  • 2021-05-05
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-08
  • 2022-12-23
  • 2021-07-31
  • 2022-12-23
  • 2021-12-02
  • 2022-12-23
相关资源
相似解决方案