Home Forums SQL Server 2005 Administering Help!... Memory Use on Windows 2008 R2, SQL Server 2005 x64. The physical is 98% RE: Help!... Memory Use on Windows 2008 R2, SQL Server 2005 x64. The physical is 98%

  • opc.three (3/15/2012)


    juanc.aguirre (3/15/2012)


    opc.three (3/15/2012)


    Run this one too please and post the results, this one includes multi-page allocations:

    -- top 10 consumers of memory

    SELECT TOP 10

    type,

    CAST(SUM(single_pages_kb+multi_pages_kb) / 1024.0 AS DECIMAL(10, 2)) AS [Mem, Mb]

    FROM sys.dm_os_memory_clerks

    GROUP BY type

    ORDER BY SUM(single_pages_kb+multi_pages_kb) DESC ;

    Hello... there's no server link on that instance.

    and... the result of the query is

    MEMORYCLERK_SQLOPTIMIZER1.95

    CACHESTORE_PHDR30.23

    CACHESTORE_XMLDBTYPE0.01

    CACHESTORE_EVENTS0.02

    USERSTORE_OBJPERM0.40

    USERSTORE_TOKENPERM0.37

    MEMORYCLERK_SQLSTORENG15.59

    CACHESTORE_XPROC0.05

    OBJECTSTORE_SNI_PACKET2.66

    CACHESTORE_BROKERRSB0.01

    Thanks...

    That does not look right, did you include the ORDER BY when you ran it?

    Yea... you're right

    the correct result is...

    [font="Courier New"]

    CACHESTORE_SQLCP 1029.78

    CACHESTORE_PHDR 30.23

    MEMORYCLERK_SOSNODE 24.59

    CACHESTORE_OBJCP 19.91

    MEMORYCLERK_SQLGENERAL 18.13

    MEMORYCLERK_SQLSTORENG 15.63

    OBJECTSTORE_LOCK_MANAGER 5.75

    USERSTORE_SCHEMAMGR 5.00

    OBJECTSTORE_SNI_PACKET 3.04

    USERSTORE_DBMETADATA 2.26

    [/font]

    Thanks!!!!