Mon 16 Apr 2007
I have been having a problem with SQL server on the Small Business Server 2003 R2 running away with over 1 GB of RAM. This has lead to high memory alert messages from the server. I did some goggling and found this article at DogRiley - Your Network WatchDog.
sqlservr.exe high memory usage for SBSMonitoring process
Syntax of commands
osql -E -S servername\sbsmonitoring
sp_configure ’show advanced options’,1
reconfigure with override
go
sp_configure ‘max server memory’, nnnn
reconfigure with override
go
I followed his example with my server named gentoo
C:\Documents and Settings\Administrator>osql -E -S gentoo\sbsmonitoring
1> sp_configure ’show advanced options’,1
2> reconfigure with override
3> go
DBCC execution completed. If DBCC printed error messages, contact your system
administrator.
Configuration option ’show advanced options’ changed from 0 to 1. Run the
RECONFIGURE statement to install.
1> sp_configure ‘max server memory’,100
2> reconfigure with override
3> go
DBCC execution completed. If DBCC printed error messages, contact your system
administrator.
Configuration option ‘max server memory (MB)’ changed from 2147483647 to 100.
Run the RECONFIGURE statement to install.
1> quit
