Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Chewy
Starting Member
3 Posts |
Posted - 2011-12-06 : 04:59:02
|
Hi Guys,SQL Server 2005From the perfmon, I can see that sql server is using 16GB of memory <perfmon, total server memory>.From the below URLs, I have managed to find out the memory used by data (buffer) and query plans (cache). Buffer:8.2GBCache: 1.5GThe above adds up to near 10GB. May i know what is utilizing the remaining 6GB? Anyway to find out?Appreciate your help.http://www.sqlteam.com/article/what-data-is-in-sql-server-memoryhttp://www.sqlteam.com/article/what-query-plans-are-in-sql-server-memorythanks |
|
james_wells
Yak Posting Veteran
55 Posts |
Posted - 2011-12-06 : 11:07:49
|
This may help - uses RING_BUFFER_RESOURCE_MONITORDECLARE @ts_now bigint; SET @ts_now = (SELECT cpu_ticks / CONVERT(bigint, cpu_ticks_in_ms) FROM sys.dm_os_sys_info); SELECT record_id, Memory_Utilisation, Physical_Memory, Available_Memory, Reserved_Memory, Committed_Memory, Cached_Memory, AWE_Memory, Shared_Memory, TotalPageFile, AvailablePageFile,DATEADD(ms, -1 * (@ts_now - [timestamp]), GETDATE()) AS [Event Time]--- DATEADD(ms, -1 * (@ts_now - [timestamp]), GETDATE()) AS [Event Time]FROM ( SELECT record.value('(./Record/@id)[1]', 'int') AS record_id, record.value('(./Record/MemoryRecord/MemoryUtilization)[1]', 'int') AS [Memory_Utilisation], record.value('(./Record/MemoryRecord/TotalPhysicalMemory)[1]', 'int') AS [Physical_Memory], record.value('(./Record/MemoryRecord/AvailablePhysicalMemory)[1]', 'int') AS [Available_Memory], record.value('(./Record/MemoryNode/ReservedMemory)[1]', 'int') AS [Reserved_Memory], record.value('(./Record/MemoryNode/CommittedMemory)[1]', 'int') AS [Committed_Memory], record.value('(./Record/MemoryNode/CachedMemory)[1]', 'int') AS [Cached_Memory], record.value('(./Record/MemoryNode/AWEMemory)[1]', 'int') AS [AWE_Memory], record.value('(./Record/MemoryNode/SharedMemory)[1]', 'int') AS [Shared_Memory], record.value('(./Record/MemoryRecord/TotalPageFile)[1]', 'int') AS [TotalPageFile], record.value('(./Record/MemoryRecord/AvailablePageFile)[1]', 'int') AS [AvailablePageFile], [timestamp] FROM ( SELECT [timestamp], CONVERT(xml, record) AS [record] FROM sys.dm_os_ring_buffers WHERE ring_buffer_type = N'RING_BUFFER_RESOURCE_MONITOR' AND record LIKE '%<MemoryRecord>%') AS x ) AS y where (@ts_now - timestamp) > 0 and(@ts_now - timestamp) < 999999999 |
|
|
Chewy
Starting Member
3 Posts |
Posted - 2011-12-07 : 03:03:01
|
Hi,Can advise on how to do inteprete it and sum up to 16GB?thanksrecord_id Memory_Utilisation Physical_Memory Available_Memory Reserved_Memory Committed_Memory Cached_Memory AWE_Memory Shared_Memory TotalPageFile AvailablePageFile Event Time----------- ------------------ --------------- ---------------- --------------- ---------------- ------------- ----------- ------------- ------------- ----------------- -----------------------4 58 37737992 35382852 37980760 223840 2920 0 0 86991944 85444888 2011-12-05 23:48:45.3833 58 37737992 35382676 37980760 223840 2776 0 0 86991944 85444872 2011-12-05 23:48:40.3832 62 37737992 35356664 37980760 234848 12568 0 0 86991944 85418256 2011-12-05 23:48:40.2801 37 37737992 35440112 37980696 222496 1744 0 0 86991944 85481740 2011-12-05 23:47:39.2900 20 37737992 35494024 37976320 216720 1416 0 0 86991944 85569712 2011-12-05 23:47:33.9535 58 37737992 35382852 7424 15928 2936 0 0 86991944 85444888 2011-12-05 23:48:45.3834 58 37737992 35382676 7424 15928 2624 0 0 86991944 85444872 2011-12-05 23:48:40.3833 62 37737992 35356664 7424 31544 4352 0 0 86991944 85418256 2011-12-05 23:48:40.2802 37 37737992 35440112 7104 15408 2632 0 0 86991944 85481740 2011-12-05 23:47:39.2901 20 37737992 35493964 5568 5536 656 0 0 86991944 85569636 2011-12-05 23:47:33.9530 20 37737992 35494068 5568 5536 656 0 0 86991944 85569744 2011-12-05 23:47:33.953(11 row(s) affected) |
|
|
Chewy
Starting Member
3 Posts |
Posted - 2012-01-07 : 23:58:49
|
Hi Guys,I still have difficulty interpreting the output after reading up the dbcc memory status relevant documents. Can anyone help me with this? Appreciate your time on this.dbcc memory status output belowthanks!My question:From the perfmon, I can see that sql server is using 16GB of memory <perfmon, total server memory>.From the below URLs, I have managed to find out the memory used by data (buffer) and query plans (cache). Buffer:8.2GBCache: 1.5GThe above adds up to near 10GB. May i know what is utilizing the remaining 6GB? Anyway to find out?http://www.sqlteam.com/article/what-data-is-in-sql-server-memoryhttp://www.sqlteam.com/article/what-query-plans-are-in-sql-server-memoryDBCC MEMORY STATUS:Memory Manager KB ------------------------------ --------------------VM Reserved 44366000VM Committed 18374464AWE Allocated 0Reserved Memory 1024Reserved Memory In Use 0(5 row(s) affected)Memory node Id = 0 KB ------------------------------ --------------------VM Reserved 51840VM Committed 6011016AWE Allocated 0MultiPage Allocator 50680SinglePage Allocator 3045224(5 row(s) affected)Memory node Id = 1 KB ------------------------------ --------------------VM Reserved 44308400VM Committed 12357772AWE Allocated 0MultiPage Allocator 22864SinglePage Allocator 3045224(5 row(s) affected)MEMORYCLERK_SQLGENERAL (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 21776MultiPage Allocator 4528(7 row(s) affected)MEMORYCLERK_SQLGENERAL (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 15672MultiPage Allocator 16(7 row(s) affected)MEMORYCLERK_SQLGENERAL (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 37448MultiPage Allocator 4544(7 row(s) affected)MEMORYCLERK_SQLBUFFERPOOL (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 37830656VM Committed 11930264AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 0MultiPage Allocator 24(7 row(s) affected)MEMORYCLERK_SQLBUFFERPOOL (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 5959936AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 0MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLBUFFERPOOL (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 37830656VM Committed 17890200AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 0MultiPage Allocator 24(7 row(s) affected)MEMORYCLERK_SQLQUERYEXEC (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 288MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLQUERYEXEC (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLQUERYEXEC (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 296MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLOPTIMIZER (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 864MultiPage Allocator 128(7 row(s) affected)MEMORYCLERK_SQLOPTIMIZER (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 864MultiPage Allocator 128(7 row(s) affected)MEMORYCLERK_SQLUTILITIES (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 240VM Committed 240AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 120MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLUTILITIES (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 240VM Committed 240AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 120MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLSTORENG (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 9408VM Committed 9408AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 2088MultiPage Allocator 32(7 row(s) affected)MEMORYCLERK_SQLSTORENG (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 2216MultiPage Allocator 448(7 row(s) affected)MEMORYCLERK_SQLSTORENG (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 9408VM Committed 9408AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 4304MultiPage Allocator 480(7 row(s) affected)MEMORYCLERK_SQLCONNECTIONPOOL (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 1664MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLCONNECTIONPOOL (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 1712MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLCONNECTIONPOOL (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 3376MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLCLR (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 6313024VM Committed 263292AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 392MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLCLR (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 1528MultiPage Allocator 43032(7 row(s) affected)MEMORYCLERK_SQLCLR (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 6313024VM Committed 263292AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 1920MultiPage Allocator 43032(7 row(s) affected)MEMORYCLERK_SQLSERVICEBROKER (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 80MultiPage Allocator 304(7 row(s) affected)MEMORYCLERK_SQLSERVICEBROKER (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 80MultiPage Allocator 304(7 row(s) affected)MEMORYCLERK_SQLHTTP (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLHTTP (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SNI (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 184MultiPage Allocator 16(7 row(s) affected)MEMORYCLERK_SNI (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 168MultiPage Allocator 16(7 row(s) affected)MEMORYCLERK_SNI (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 352MultiPage Allocator 32(7 row(s) affected)MEMORYCLERK_FULLTEXT (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_FULLTEXT (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLXP (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLXP (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_BHF (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 208MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_BHF (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 176MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_BHF (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 384MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLQERESERVATIONS (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 1024MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLQERESERVATIONS (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 1024MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_HOST (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 48MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_HOST (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 48MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SOSNODE (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 18848MultiPage Allocator 11896(7 row(s) affected)MEMORYCLERK_SOSNODE (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 19024MultiPage Allocator 6368(7 row(s) affected)MEMORYCLERK_SOSNODE (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 37872MultiPage Allocator 18264(7 row(s) affected)MEMORYCLERK_SQLSERVICEBROKERTRANSPORT (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 48MultiPage Allocator 0(7 row(s) affected)MEMORYCLERK_SQLSERVICEBROKERTRANSPORT (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 48MultiPage Allocator 0(7 row(s) affected)CACHESTORE_OBJCP (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 196336MultiPage Allocator 4832(7 row(s) affected)CACHESTORE_OBJCP (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 196336MultiPage Allocator 4832(7 row(s) affected)CACHESTORE_SQLCP (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 2534288MultiPage Allocator 568(7 row(s) affected)CACHESTORE_SQLCP (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 2534288MultiPage Allocator 568(7 row(s) affected)CACHESTORE_PHDR (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 31200MultiPage Allocator 0(7 row(s) affected)CACHESTORE_PHDR (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 31200MultiPage Allocator 0(7 row(s) affected)CACHESTORE_XPROC (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 104MultiPage Allocator 0(7 row(s) affected)CACHESTORE_XPROC (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 104MultiPage Allocator 0(7 row(s) affected)CACHESTORE_TEMPTABLES (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 168MultiPage Allocator 0(7 row(s) affected)CACHESTORE_TEMPTABLES (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 168MultiPage Allocator 0(7 row(s) affected)CACHESTORE_NOTIF (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)CACHESTORE_NOTIF (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)CACHESTORE_VIEWDEFINITIONS (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)CACHESTORE_VIEWDEFINITIONS (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)CACHESTORE_XMLDBTYPE (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_XMLDBTYPE (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_XMLDBELEMENT (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_XMLDBELEMENT (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_XMLDBATTRIBUTE (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_XMLDBATTRIBUTE (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_STACKFRAMES (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 0MultiPage Allocator 8(7 row(s) affected)CACHESTORE_STACKFRAMES (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 0MultiPage Allocator 8(7 row(s) affected)CACHESTORE_STACKFRAMES (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 0MultiPage Allocator 16(7 row(s) affected)CACHESTORE_BROKERTBLACS (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 64MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERTBLACS (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 32MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERTBLACS (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 96MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERKEK (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERKEK (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERDSH (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERDSH (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERUSERCERTLOOKUP (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERUSERCERTLOOKUP (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERRSB (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERRSB (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERREADONLY (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 32MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERREADONLY (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 32MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERTO (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_BROKERTO (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_EVENTS (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)CACHESTORE_EVENTS (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 16MultiPage Allocator 0(7 row(s) affected)CACHESTORE_CLRPROC (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_CLRPROC (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 8MultiPage Allocator 0(7 row(s) affected)CACHESTORE_SYSTEMROWSET (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 2176MultiPage Allocator 0(7 row(s) affected)CACHESTORE_SYSTEMROWSET (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 2176MultiPage Allocator 0(7 row(s) affected)USERSTORE_SCHEMAMGR (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 6664MultiPage Allocator 0(7 row(s) affected)USERSTORE_SCHEMAMGR (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 6664MultiPage Allocator 0(7 row(s) affected)USERSTORE_DBMETADATA (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 9800MultiPage Allocator 0(7 row(s) affected)USERSTORE_DBMETADATA (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 9800MultiPage Allocator 0(7 row(s) affected)USERSTORE_TOKENPERM (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 29776MultiPage Allocator 0(7 row(s) affected)USERSTORE_TOKENPERM (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 29776MultiPage Allocator 0(7 row(s) affected)USERSTORE_OBJPERM (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 3616MultiPage Allocator 32(7 row(s) affected)USERSTORE_OBJPERM (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 3616MultiPage Allocator 32(7 row(s) affected)USERSTORE_SXC (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 808MultiPage Allocator 0(7 row(s) affected)USERSTORE_SXC (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 776MultiPage Allocator 0(7 row(s) affected)USERSTORE_SXC (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 1584MultiPage Allocator 0(7 row(s) affected)OBJECTSTORE_LBSS (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 128MultiPage Allocator 480(7 row(s) affected)OBJECTSTORE_LBSS (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 128MultiPage Allocator 528(7 row(s) affected)OBJECTSTORE_LBSS (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 256MultiPage Allocator 1008(7 row(s) affected)OBJECTSTORE_SNI_PACKET (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 3024MultiPage Allocator 48(7 row(s) affected)OBJECTSTORE_SNI_PACKET (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 3312MultiPage Allocator 48(7 row(s) affected)OBJECTSTORE_SNI_PACKET (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 6336MultiPage Allocator 96(7 row(s) affected)OBJECTSTORE_SERVICE_BROKER (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 272MultiPage Allocator 0(7 row(s) affected)OBJECTSTORE_SERVICE_BROKER (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 272MultiPage Allocator 0(7 row(s) affected)OBJECTSTORE_LOCK_MANAGER (node 0) KB ---------------------------------------------------------------- --------------------VM Reserved 131072VM Committed 131072AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 67760MultiPage Allocator 0(7 row(s) affected)OBJECTSTORE_LOCK_MANAGER (node 1) KB ---------------------------------------------------------------- --------------------VM Reserved 0VM Committed 0AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 67448MultiPage Allocator 0(7 row(s) affected)OBJECTSTORE_LOCK_MANAGER (Total) KB ---------------------------------------------------------------- --------------------VM Reserved 131072VM Committed 131072AWE Allocated 0SM Reserved 0SM Commited 0SinglePage Allocator 135208MultiPage Allocator 0(7 row(s) affected)Buffer Distribution Buffers------------------------------ -----------Stolen 10902Free 709626Cached 369753Database (clean) 1011473Database (dirty) 91448I/O 0Latched 1(7 row(s) affected)Buffer Counts Buffers------------------------------ --------------------Committed 2193203Target 4076566Hashed 1102922Stolen Potential 4100605External Reservation 126Min Free 512Visible 4076566Available Paging File 8341347(8 row(s) affected)Procedure Cache Value------------------------------ -----------TotalProcs 36953TotalPages 345916InUsePages 260(3 row(s) affected)Global Memory Objects Buffers------------------------------ --------------------Resource 666Locks 16904XDES 246SETLS 16SE Dataset Allocators 32SubpDesc Allocators 16SE SchemaManager 831SQLCache 4147Replication 2ServerGlobal 49XP Global 2SortTables 2(12 row(s) affected)Query Memory Objects Value------------------------------ -----------Grants 1Waiting 0Available (Buffers) 3050462Maximum (Buffers) 3050590Limit 3050590Next Request 0Waiting For 0Cost 0Timeout 0Wait Time 0Last Target 3063390(11 row(s) affected)Small Query Memory Objects Value------------------------------ -----------Grants 0Waiting 0Available (Buffers) 12800Maximum (Buffers) 12800Limit 12800(5 row(s) affected)Optimization Queue Value------------------------------ --------------------Overall Memory 26768351232Target Memory 22448848896Last Notification 1Timeout 6Early Termination Factor 5(5 row(s) affected)Small Gateway Value------------------------------ --------------------Configured Units 64Available Units 64Acquires 0Waiters 0Threshold Factor 380000Threshold 380000(6 row(s) affected)Medium Gateway Value------------------------------ --------------------Configured Units 16Available Units 16Acquires 0Waiters 0Threshold Factor 12(5 row(s) affected)Big Gateway Value------------------------------ --------------------Configured Units 1Available Units 1Acquires 0Waiters 0Threshold Factor 8(5 row(s) affected)MEMORYBROKER_FOR_CACHE Value-------------------------------- --------------------Allocations 369755Rate -3Target Allocations 3099204Future Allocations 0Last Notification 1(5 row(s) affected)MEMORYBROKER_FOR_STEAL Value-------------------------------- --------------------Allocations 10893Rate -7Target Allocations 2740338Future Allocations 0Last Notification 1(5 row(s) affected)MEMORYBROKER_FOR_RESERVE Value-------------------------------- --------------------Allocations 0Rate -38Target Allocations 3267621Future Allocations 762647Last Notification 1(5 row(s) affected)DBCC execution completed. If DBCC printed error messages, contact your system administrator. |
|
|
|
|
|
|
|