Summary
A default Microsoft SQL Server installation does not specify a memory limit. This can lead to situations where SQL Server will consume all available memory on the computer hosting SQL Server. You may wish to specify a maximum memory limit.
More Information
Use Enterprise Manager or SQL Server Management Studio to set a maximum server memory limit. You can also use the OSQL command line utility to modify this value.
Enterprise Manager
Management Studio
OSQL
cmd
osql -E -S SQLInstance
SQLInstance is the name assigned to the desired instance of SQL Server. This term should be replaced by the name of the computer hosting SQL Server. If you are using MSDE (i.e. Laserfiche Server (Team) or Standalone), then you may also need to append "\Laserfiche" (e.g. Computer\Laserfiche).
1>
USE master
EXEC sp_configure 'show advanced options', 1
RECONFIGURE WITH OVERRIDE
GO
USE master
EXEC sp_configure 'max server memory (MB)', MaxServerMemory
RECONFIGURE WITH OVERRIDE
GO
MaxServerMemory is the value of the physical memory in megabytes (MB) that you want to allocate.
USE master
EXEC sp_configure 'show advanced options', 0
RECONFIGURE WITH OVERRIDE
GO
exit