Sytone's Ramblings

The occasional posts of a guy who plays with technology.

Setting Max memory usage in SQL Server

2010-07-30 1 min read Technology
When running SharePoint locally it is a good idea to control the memory usage of SQL. To do this use the SQL query below. [code lang=“sql”] sp_configure ‘max server memory’, 1024 RECONFIGURE GO [/code] A good article that goes through some of the areas you need to look at in relationship to memory is located at: http://www.eraofdata.com/blog/2008/10/sql-server-memory-configuration/