Click here to Skip to main content
15,887,596 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I have SQL SERVER 2005 and it has a range of applications

One of these applications is causing the consumption of a large amount of RAM so that uses up to 15.9 GB RAM

I Need know how to monitor the work of the server to reduce this problem. What are the necessary things to watch in the control so I can concentrate on them
Posted
Updated 16-Mar-11 13:39pm
v2

DBCC MEMORYSTATUS[^] can take snapshots of memory usage.

You can limit the amount of memory Sql Server uses with configuration options.[^].

If you find that a particular procedure is causing the usage you can analyze the execution plan[^] to see if you can improve it's performance.
 
Share this answer
 
Comments
thatraja 17-Mar-11 2:59am    
Good links Henry. 5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900