﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / SQL Server 2008 / SQL Server 2008 Administration  / can I measure how much memory is allocated to the buffer in SS2K8 on VMWare accurately / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Wed, 19 Jun 2013 05:19:57 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: can I measure how much memory is allocated to the buffer in SS2K8 on VMWare accurately</title><link>http://www.sqlservercentral.com/Forums/Topic1362292-1550-1.aspx</link><description>I'd start with asking your VMware Admin to check the memory usage statistics for the physical host of your VM. The reason I'd start here is because its very quick to check on the VMs from a high level where as memory investigation within the VM itself and SQL Server will require more time.Confirm you're VM isn't having pressure from it's neighbors and then drill down into it.Here are the esxtop commands. He or she would just have to look at "MEMCTL" (MB) to tell if there is ballooning taking place.http://communities.vmware.com/docs/DOC-9279</description><pubDate>Wed, 26 Sep 2012 19:00:47 GMT</pubDate><dc:creator>AmarettoSlim</dc:creator></item><item><title>RE: can I measure how much memory is allocated to the buffer in SS2K8 on VMWare accurately</title><link>http://www.sqlservercentral.com/Forums/Topic1362292-1550-1.aspx</link><description>Consult with your vm admin, if memory ballooning becomes a problem you may have to uninstall the balloon driver from the vmware tools but simply having the admin reserve resources should be sufficient.</description><pubDate>Sat, 22 Sep 2012 02:36:52 GMT</pubDate><dc:creator>Perry Whittle</dc:creator></item><item><title>RE: can I measure how much memory is allocated to the buffer in SS2K8 on VMWare accurately</title><link>http://www.sqlservercentral.com/Forums/Topic1362292-1550-1.aspx</link><description>Thanks!</description><pubDate>Fri, 21 Sep 2012 06:58:40 GMT</pubDate><dc:creator>jberg-604007</dc:creator></item><item><title>RE: can I measure how much memory is allocated to the buffer in SS2K8 on VMWare accurately</title><link>http://www.sqlservercentral.com/Forums/Topic1362292-1550-1.aspx</link><description>If you want to measure memory usage of Buffer pool,Select Count(*) * 8 / (1024.00) 'BufferPoolSize In MB' From sys.dm_os_buffer_descriptors</description><pubDate>Fri, 21 Sep 2012 03:06:01 GMT</pubDate><dc:creator>SQL Show</dc:creator></item><item><title>RE: can I measure how much memory is allocated to the buffer in SS2K8 on VMWare accurately</title><link>http://www.sqlservercentral.com/Forums/Topic1362292-1550-1.aspx</link><description>Measure total server memory used by SQL Server:[code="sql"]SELECT cntr_value / 1024.0 AS TotalServerMemoryMBFROM   sys.dm_os_performance_countersWHERE  counter_name = 'Total Server Memory (KB)';[/code]For physical (if VM host is stealing) and buffer use:[code="sql"]SELECT  CAST(physical_memory_in_bytes / (1024.0 * 1024.0 * 1024.0) AS DECIMAL(20, 2)) AS PhysicalMemoryGB,        CAST((bpool_committed * 8) / (1024.0 * 1024.0) AS DECIMAL(20, 2)) AS BufferPoolCommittedMemoryGBFROM    sys.dm_os_sys_info;[/code]</description><pubDate>Thu, 20 Sep 2012 14:57:27 GMT</pubDate><dc:creator>opc.three</dc:creator></item><item><title>can I measure how much memory is allocated to the buffer in SS2K8 on VMWare accurately</title><link>http://www.sqlservercentral.com/Forums/Topic1362292-1550-1.aspx</link><description>I have a 8GB SS2K8 database on a smallish VMware server with 5 other VMs running on the host.  The SS2K8 server is supposed to have 4GB of memory.  Task Manager and Activity monitor indicate that there is 4GB, but I suspect that the host is stealing memory for another VM because a few times a day the database slows way down.  I don't see high IO or CPU on the database when this happens.  Are there DMV's that would allow me to view what the database is really getting ( or losing!) during these slow downs?</description><pubDate>Thu, 20 Sep 2012 13:43:49 GMT</pubDate><dc:creator>jberg-604007</dc:creator></item></channel></rss>