5 pts.
 SQL Server 2005 Express SP3 Memory Usage
Upon Startup of my system the sqlwriter process immediately grabs 700mb of RAM and holds it. As I use the SQL Server to do different thing the memory usage grows and causes the memory on my system to decline. The SQL Server never releases the memory and it causes my system to respond slowly. I fear that if left unchecked it might cause the system to freeze.

Software/Hardware used:
SQL Server 2005 Express SP3, Windows XP SP2, 4 GB RAM, Intel Core 2 P8700 2.53 GHz.
ASKED: May 6, 2010  12:50 PM
UPDATED: May 6, 2010  4:01 PM

Answer Wiki:
That is the way SQL Server is designed to use. The SQL Server caches as much data from the disk into memory as the data is being used so that it has faster access to it. If you connect to the SQL Server with Management Studio (regular or Express) and use sp_configure you can set the maximum amount of memory that the SQL Server will be allowed to use. <pre>EXEC sp_configure 'max server memory', 1024 RECONFIGURE</pre> Now with SQL Express you have the upside that it can only use 2 Gigs of RAM, so it won't be able to use any more than that.
Last Wiki Answer Submitted:  May 6, 2010  4:01 pm  by  Denny Cherry   64,520 pts.
All Answer Wiki Contributors:  Denny Cherry   64,520 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _