日期:2014-05-18  浏览次数:20654 次

WIN2008 安装SQL2000的内存使用问题
OS:WIN2008 64位
内存:16G
SQL:SQL2000 sp4

问题是:任务管理器中查看SQL2000内存只用了3.6G左右,如何提高和优化?
谢谢!


------解决方案--------------------
SQL code
---手动配置内存选项
sp_configure'show advanced options',1
go
reconfigure
go
sp_configure 'min server memory' --服务器最小内存
sp_configure 'max server memory' --服务器最大内存
sp_configure 'index create memory'--创建索引占用的内存
sp_configure 'min  memory per query'--每次查询占用的最小内存

------解决方案--------------------
问题是SQL2000是64位的吗?查一下.
SQL code

select @@VERSION

------解决方案--------------------
详细可以用在查询分析器里执行 dbcc memorystatus 查看.