How do I find out the max and min memory allocated for SQL Server 2005? My sql server appears to have maxed out its memory on my box and does not seem to be doing any garbage collection.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No SQL Server will not release Memory unless it receives pressure from OS.This is by design
Read these threads
http://social.msdn.microsoft.com/Forums/en-US/sqldatabaseengine/thread/90d5422f-c924-4211-9323-7373e9d5ad1f/
https://serverfault.com/questions/108192/how-do-i-get-sql-server-to-release-its-memory
However you can allocate MAX memory in SQL Server 2008.I hope this will be true for SQL Server 2005 as-well.Right click on your Server Instance in SSMS and goto properties.And then Memory.
Normally it is advised to allocate MAX memory slightly less than Physical memory of the Server.read the above threads for details.