November 17, 2009 at 3:07 pm
Hey people can someone tell me how to see the amount of memory sql server is using in sql server management studio, i want to know if there is a system stored procedure, a sys schema,a dmv or a dbcc command which allows to view the memory sql server uses compared to the installed memory i have on the machine
November 17, 2009 at 5:17 pm
From SSMS, run this
SELECT * from sys.sysperfinfo where COUNTER_NAME LIKE '%TOTAL SERVER MEMORY%'
Alternately, use Performance Monitor and look for Memory Manager Object.
Check this link http://technet.microsoft.com/en-us/library/ms190924%28SQL.90%29.aspx
Blog -- LearnSQLWithBru
Join on Facebook Page Facebook.comLearnSQLWithBru
Twitter -- BruMedishetty
November 17, 2009 at 5:19 pm
November 17, 2009 at 5:31 pm
THANKs i appreciate
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply