





















转载自:http://user.qzone.qq.com/33524538?ptlang=2052
SQLServer支持大内存方案
方法:系统安装目录的根目录下有个系统隐藏文件:boot.int,加入/PAE参数
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Windows Server 2003, Enterprise" /noexecute=optout /fastdetect /PAE
修改好后,保存,重启系统
将打开“组策略”对话框。
细节窗格中随即显示出策略。
特别注意:如果SqlServer 打了sp4补丁后,由于该补丁内在bug,要启用AWE,必须打个补丁:
下载地址:http://www.microsoft.com/downloads/details.aspx?displaylang=zh-cn&FamilyID=7C407047-3F1F-48B8-9E4C-DC32875E1961
sp_configure 'show advanced options', 1
RECONFIGURE
GO
sp_configure 'awe enabled', 1
RECONFIGURE
GO
执行后重启SqlServer
sp_configure 'min server memory', 1024
RECONFIGURE
GO
sp_configure 'max server memory', 6144
RECONFIGURE
GO
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。