Network Resource Pool design query

Current Scenario - Two physical sites - Two SCOM Management servers assigned to perform Network Monitoring.
Currently the proposed configuration is to have two separate Network Resource pools so that the network devices in each site is explicitly managed by the network resource pool local to that site. The question is, if one of the sites or network resource
pools becomes unavailable, how do I continue to manage all the devices by failover?
Alternatively, and I may have answered my own question here, if I create one single network resource pool and encompass both SCOM Servers in that pool with an explicit discovery rule assigned to both servers to cover all network devices, that would provide
the resiliency I need, but would the servers on each physical segment still manage the network devices local to them?
Also, I am aware that it is possible to assign an explicit rule to each server within a resource pool. In that scenario, if one of the servers in the resource pool becomes unavailable, does that mean that the network devices monitored by that server are
no longer monitored?
Any advice on which solution to implement would be much appreciated. I understand that there are pro's and cons to all of the scenarios that I have listed. Any links to some more in-depth reading would also be appreciated.
Eddied

First, to your last question, if the network device discovery server goes down, this doesn't affect monitoring at all. The devices will not be undiscovered, and monitoring will continue to happen. The discovery server is completely separate from the monitoring
resource pool. The discovery server does not even need to be a member of the monitoring resource pool at all - it could be some other management server that doesn't actually do any network monitoring.
If you are using true management server (not gateways), then I assume there are no port restrictions communicating to any of the devices in any site or subnet. This means you can simply create a resource pool containing 2 or more management servers, and
do all network monitoring from that resource pool. The resource pool manages which server is actively monitoring which device. I wish I had more information into the algorithm that calculates this under the hood, but I don't know. To address your concern,
though, the network monitoring resource pool is inherently HA - when one MS goes down, load will (or should) be transferred to other members of the pool automatically.
I hope that helps a little more than my previous response.
Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

Similar Messages

  • Network device configuration for SCOM 2012 Network Resource Pool

    We are planning for two management servers in a Network Resource Pool.
    So(considering failover situation) to send traps to both devices do we need to configure both management servers as SNMP servers on these devices?
    If yes, Then it will definitely need double traffic for sending traps to two devices, isn’t it?
    What SNMP server name we should use while configuring devices?
    Thanks,
    Vinayak

    Hi,
    >So(considering failover situation) to send traps to both devices do we need to configure both management servers as SNMP servers on these devices?
    Yes, you need to configure both management servers as a trap recievers.
    >If yes, Then it will definitely need double traffic for sending traps to two devices, isn’t it?
    That's right.
    http://OpsMgr.ru/

  • MSSQL 2008 R2 - 32bit, TSQL backup with compression, error: There is insufficient system memory in resource pool 'internal' to run this query

    Hello,
    I would like to ask you about advice.
    We have MSSQL 2008 R2, 32 bit. Memory is 4GB, split into 2GB for Windows and 2GB for applications. Database has recovery model simple because we have replicated data into other servers ( 2 ). Contemporary we work with 2 servers. Max memory for MSSQL is 2048
    MB.
    We set the backup as follows:
    USE MSDB
    GO
    DECLARE @JMENO_ZALOHY VARCHAR(120)
    SELECT  @JMENO_ZALOHY = 'E:\backup\BackupSQL\1 Pondeli\DAVOSAM_'+ convert( varchar(2), datepart( hh, getdate() ) ) + '00_DEN_DIFF.bak'
    SELECT  @JMENO_ZALOHY
    BACKUP DATABASE [DAVOSAM]
    TO DISK = @JMENO_ZALOHY
    WITH INIT, DIFFERENTIAL, CHECKSUM, COMPRESSION
    GO
    Every second or third day in log there is error message: 'There is insufficient system memory in resource pool 'internal' to run this query' Accurate in time of backup. The error is still repeat, majority in working hours.
    Today I have found out, that problem is probably in compression of backup. Because if I removed word: compression, a backup normally runs without error.
    Question: Is my hypothesis correct that problem is in backup with compression?
    Thank you David

    Hello, today evening I have ran backup command bellow. All is OK. Probably MSSQL has cleaned memory. Next attempt I will try in peak next week.
    Since time I have removed word compression, in error log is not any error.
    I have checked memory as soon as memory gets on top, it is about 1.707 GB the MSSQL writes into log this messgages:
    2014-03-14 15:00:04.63 spid89      Memory constraints resulted reduced backup/restore buffer sizes. Proceding with 7 buffers of size 64KB.
    2014-03-14 15:00:08.74 Backup      Database differential changes were backed up. Database: DAVOSAM, creation date(time): 2014/01/12(22:03:10), pages dumped: 16142, first LSN: 1894063:1673:284,
    last LSN: 1894063:1792:1, full backup LSN: 1894053:15340:145, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\backup\BackupSQL\5 Patek\DAVOSAM_1500_DEN_DIFF.bak'}). This is an informational message. No user action is required.
    2014-03-14 15:00:12.79 spid72      Memory constraints resulted reduced backup/restore buffer sizes. Proceding with 7 buffers of size 64KB.
    2014-03-14 15:00:12.88 Backup      Database differential changes were backed up. Database: WEBFORM, creation date(time): 2014/02/01(05:22:47), pages dumped: 209, first LSN: 125436:653:48, last
    LSN: 125436:674:1, full backup LSN: 125435:689:36, number of dump devices: 1, device information: (FILE=1, TYPE=DISK: {'E:\backup\BackupSQL\5 Patek\WEBFORM_1500_DEN_DIFF.bak'}). This is an informational message. No user action is required.
    After that the MSSQL reduced memory on 1.692.
    USE MSDB
    GO
    DECLARE @JMENO_ZALOHY VARCHAR(120)
    SELECT  @JMENO_ZALOHY = 'E:\backup\BackupSQL\6 Sobota\DAVOSAM_'+ convert( varchar(2), datepart( hh, getdate() ) ) + '00_DEN_FULL.bak'
    SELECT  @JMENO_ZALOHY
    BACKUP DATABASE [DAVOSAM]
    TO DISK = @JMENO_ZALOHY
    WITH INIT, CHECKSUM, COMPRESSION, MAXTRANSFERSIZE=65536
    GO
    E:\backup\BackupSQL\6 Sobota\DAVOSAM_2100_DEN_FULL.bak
    (1 row(s) affected)
    Processed 467240 pages for database 'DAVOSAM', file 'DavosAM_Data' on file 1.
    Processed 2 pages for database 'DAVOSAM', file 'DavosAM_Log' on file 1.
    BACKUP DATABASE successfully processed 467242 pages in 24.596 seconds (148.411 MB/sec).
    select * from sys.dm_exec_connections
    where net_packet_size > 8192
    session_id  most_recent_session_id connect_time            net_transport                            protocol_type            
                   protocol_version endpoint_id encrypt_option                           auth_scheme                
                 node_affinity num_reads   num_writes  last_read               last_write              net_packet_size client_net_address  
                                client_tcp_port local_net_address                                local_tcp_port
    connection_id                        parent_connection_id                 most_recent_sql_handle
    (0 row(s) affected)
    SELECT SUM (pages_allocated_count * page_size_in_bytes)/1024 as 'KB Used', mo.type, mc.type
    FROM sys.dm_os_memory_objects mo
    join sys.dm_os_memory_clerks mc on mo.page_allocator_address=mc.page_allocator_address
    GROUP BY mo.type, mc.type, mc.type
    ORDER BY 1 DESC;
    KB Used     type                                                         type
    29392       MEMOBJ_SORTTABLE                                             MEMORYCLERK_SQLSTORENG
    9392        MEMOBJ_SOSNODE                                               MEMORYCLERK_SOSNODE
    8472        MEMOBJ_SQLTRACE                                              MEMORYCLERK_SQLGENERAL
    5480        MEMOBJ_SECOLMETACACHE                                        USERSTORE_SCHEMAMGR
    5280        MEMOBJ_RESOURCE                                              MEMORYCLERK_SQLGENERAL
    5008        MEMOBJ_CACHEOBJPERM                                          USERSTORE_OBJPERM
    4320        MEMOBJ_SOSSCHEDULER                                          MEMORYCLERK_SOSNODE
    2864        MEMOBJ_PERDATABASE                                           MEMORYCLERK_SQLSTORENG
    2328        MEMOBJ_SQLCLR_CLR_EE                                         MEMORYCLERK_SQLCLR
    2288        MEMOBJ_SESCHEMAMGR                                           USERSTORE_SCHEMAMGR
    2080        MEMOBJ_SOSDEADLOCKMONITORRINGBUFFER                          MEMORYCLERK_SQLSTORENG
    2008        MEMOBJ_LOCKBLOCKS                                            OBJECTSTORE_LOCK_MANAGER
    1584        MEMOBJ_CACHESTORETOKENPERM                                   USERSTORE_TOKENPERM
    1184        MEMOBJ_LOCKOWNERS                                            OBJECTSTORE_LOCK_MANAGER
    840         MEMOBJ_SNIPACKETOBJECTSTORE                                  OBJECTSTORE_SNI_PACKET
    760         MEMOBJ_SOSDEADLOCKMONITOR                                    MEMORYCLERK_SQLSTORENG
    752         MEMOBJ_SESCHEMAMGR_PARTITIONED                               USERSTORE_SCHEMAMGR
    688         MEMOBJ_RESOURCEXACT                                          MEMORYCLERK_SQLSTORENG
    616         MEMOBJ_SOSWORKER                                             MEMORYCLERK_SOSNODE
    552         MEMOBJ_METADATADB                                            MEMORYCLERK_SQLGENERAL
    480         MEMOBJ_SRVPROC                                               MEMORYCLERK_SQLCONNECTIONPOOL
    424         MEMOBJ_SQLMGR                                                CACHESTORE_SQLCP
    400         MEMOBJ_SBOBJECTPOOLS                                         OBJECTSTORE_SERVICE_BROKER
    384         MEMOBJ_SUPERLATCH_BLOCK                                      MEMORYCLERK_SQLSTORENG
    384         MEMOBJ_RESOURCEDATASESSION                                   MEMORYCLERK_SQLGENERAL
    352         MEMOBJ_SOSSCHEDULERMEMOBJPROXY                               MEMORYCLERK_SOSNODE
    328         MEMOBJ_SBMESSAGEDISPATCHER                                   MEMORYCLERK_SQLSERVICEBROKER
    320         MEMOBJ_METADATADB                                            USERSTORE_DBMETADATA
    296         MEMOBJ_INDEXSTATSMGR                                         MEMORYCLERK_SQLOPTIMIZER
    264         MEMOBJ_LBSSCACHE                                             OBJECTSTORE_LBSS
    224         MEMOBJ_XE_ENGINE                                             MEMORYCLERK_XE
    216         MEMOBJ_GLOBALPMO                                             MEMORYCLERK_SQLGENERAL
    208         MEMOBJ_PROCESSRPC                                            USERSTORE_SXC
    200         MEMOBJ_SYSTASKSESSION                                        MEMORYCLERK_SQLCONNECTIONPOOL
    200         MEMOBJ_REPLICATION                                           MEMORYCLERK_SQLGENERAL
    192         MEMOBJ_SOSSCHEDULERTASK                                      MEMORYCLERK_SOSNODE
    176         MEMOBJ_SQLCLRHOSTING                                         MEMORYCLERK_SQLCLR
    168         MEMOBJ_SYSTEMROWSET                                          CACHESTORE_SYSTEMROWSET
    128         MEMOBJ_RESOURCESUBPROCESSDESCRIPTOR                          MEMORYCLERK_SQLGENERAL
    128         MEMOBJ_CACHESTORESQLCP                                       CACHESTORE_SQLCP
    128         MEMOBJ_RESOURCESEINTERNALTLS                                 MEMORYCLERK_SQLSTORENG
    120         MEMOBJ_BLOBHANDLEFACTORYMAIN                                 MEMORYCLERK_BHF
    120         MEMOBJ_SNI                                                   MEMORYCLERK_SNI
    88          MEMOBJ_QUERYNOTIFICATON                                      MEMORYCLERK_SQLOPTIMIZER
    72          MEMOBJ_HOST                                                  MEMORYCLERK_HOST
    72          MEMOBJ_INDEXRECMGR                                           MEMORYCLERK_SQLOPTIMIZER
    64          MEMOBJ_RULETABLEGLOBAL                                       MEMORYCLERK_SQLGENERAL
    56          MEMOBJ_SERVICEBROKER                                         MEMORYCLERK_SQLSERVICEBROKER
    56          MEMOBJ_REMOTESESSIONCACHE                                    MEMORYCLERK_SQLGENERAL
    56          MEMOBJ_PARSE                                                 CACHESTORE_PHDR
    48          MEMOBJ_CACHESTOREBROKERTBLACS                                CACHESTORE_BROKERTBLACS
    48          MEMOBJ_APPENDONLYSTORAGEUNITMGR                              MEMORYCLERK_SQLSTORENG
    40          MEMOBJ_SBASBMANAGER                                          MEMORYCLERK_SQLSERVICEBROKER
    32          MEMOBJ_OPTINFOMGR                                            MEMORYCLERK_SQLOPTIMIZER
    32          MEMOBJ_SBTRANSPORT                                           MEMORYCLERK_SQLSERVICEBROKERTRANSPORT
    32          MEMOBJ_CACHESTOREBROKERREADONLY                              CACHESTORE_BROKERREADONLY
    32          MEMOBJ_DIAGNOSTIC                                            MEMORYCLERK_SQLGENERAL
    32          MEMOBJ_UCS                                                   MEMORYCLERK_SQLSERVICEBROKER
    24          MEMOBJ_STACKSTORE                                            CACHESTORE_STACKFRAMES
    24          MEMOBJ_CACHESTORESXC                                         USERSTORE_SXC
    24          MEMOBJ_FULLTEXTGLOBAL                                        MEMORYCLERK_FULLTEXT
    24          MEMOBJ_APPLOCKLVB                                            OBJECTSTORE_LOCK_MANAGER
    24          MEMOBJ_FULLTEXTSTOPLIST                                      CACHESTORE_FULLTEXTSTOPLIST
    24          MEMOBJ_CONVPRI                                               CACHESTORE_CONVPRI
    16          MEMOBJ_SQLCLR_VMSPY                                          MEMORYCLERK_SQLCLR
    16          MEMOBJ_VIEWDEFINITIONS                                       MEMORYCLERK_SQLOPTIMIZER
    16          MEMOBJ_SBACTIVATIONMANAGER                                   MEMORYCLERK_SQLSERVICEBROKER
    16          MEMOBJ_AUDIT_EVENT_BUFFER                                    OBJECTSTORE_SECAUDIT_EVENT_BUFFER
    16          MEMOBJ_HASHGENERAL                                           MEMORYCLERK_SQLQUERYEXEC
    16          MEMOBJ_SBTIMEREVENTCACHE                                     MEMORYCLERK_SQLSERVICEBROKER
    16          MEMOBJ_ASYNCHSTATS                                           MEMORYCLERK_SQLGENERAL
    16          MEMOBJ_BADPAGELIST                                           MEMORYCLERK_SQLUTILITIES
    16          MEMOBJ_QSCANSORTNEW                                          MEMORYCLERK_SQLQUERYEXEC
    16          MEMOBJ_SCTCLEANUP                                            MEMORYCLERK_SQLGENERAL
    16          MEMOBJ_XP                                                    MEMORYCLERK_SQLXP
    8           MEMOBJ_SECURITY                                              MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_CACHESTOREBROKERRSB                                   CACHESTORE_BROKERRSB
    8           MEMOBJ_EXCHANGEXID                                           MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_CACHESTOREVENT                                        CACHESTORE_EVENTS
    8           MEMOBJ_CACHESTOREXPROC                                       CACHESTORE_XPROC
    8           MEMOBJ_DBMIRRORING                                           MEMORYCLERK_SQLUTILITIES
    8           MEMOBJ_SERVICEBROKERTRANSOBJ                                 CACHESTORE_BROKERTO
    8           MEMOBJ_CACHESTOREOBJCP                                       CACHESTORE_OBJCP
    8           MEMOBJ_CACHESTOREXMLDBELEMENT                                CACHESTORE_XMLDBELEMENT
    8           MEMOBJ_ENTITYVERSIONINFO                                     MEMORYCLERK_SQLSTORENG
    8           MEMOBJ_AUDIT_MGR                                             MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_EXCHANGEPORTS                                         MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_DEADLOCKXML                                           MEMORYCLERK_SQLSTORENG
    8           MEMOBJ_CACHESTORETEMPTABLE                                   CACHESTORE_TEMPTABLES
    8           MEMOBJ_HTTPSNICONTROLLER                                     MEMORYCLERK_SQLHTTP
    8           MEMOBJ_CACHESTOREVIEWDEFINITIONS                             CACHESTORE_VIEWDEFINITIONS
    8           MEMOBJ_CACHESTOREPHDR                                        CACHESTORE_PHDR
    8           MEMOBJ_CACHESTOREXMLDBTYPE                                   CACHESTORE_XMLDBTYPE
    8           MEMOBJ_CACHESTORE_BROKERUSERCERTLOOKUP                       CACHESTORE_BROKERUSERCERTLOOKUP
    8           MEMOBJ_EVENTSUBSYSTEM                                        MEMORYCLERK_SQLGENERAL
    8           MEMOBJ_CACHESTOREBROKERDSH                                   CACHESTORE_BROKERDSH
    8           MEMOBJ_SOSDEADLOCKMONITORXMLREPORT                           MEMORYCLERK_SQLSTORENG
    8           MEMOBJ_CACHESTOREXMLDBATTRIBUTE                              CACHESTORE_XMLDBATTRIBUTE
    8           MEMOBJ_CACHESTOREBROKERKEK                                   CACHESTORE_BROKERKEK
    8           MEMOBJ_QPMEMGRANTINFO                                        MEMORYCLERK_SQLQUERYEXEC
    8           MEMOBJ_CACHESTOREQNOTIFMGR                                   CACHESTORE_NOTIF
    (101 row(s) affected)
    David

  • SQL2012 Express Error: "insufficient system memory in resource pool 'internal' to run this query"

    I am running the SQL2012 express (version shown below) and get the following error after a day or two of operation. This is a new server 2012 installation.
    source: SQL2012Express  "There is insufficient system memory in resource pool 'internal' to run this query."
    The installed version of SQL2012 express is:
    Microsoft SQL Server 2012 (SP1) - 11.0.3128.0 (X64)   Dec 28 2012 20:23:12  Copyright (c) Microsoft Corporation
    Express Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    I read a few of the postings but couldn't determine the exact hot fix or update to run or if I am running the latest already.
    Which .exe file should I run for the update? I downloaded a file called 473913_intl_x64_zip.exe but it said it wasn't tested yet?
    Can I uninstall this path or hot fix if it breaks something?
    What can I do to correct this internal memory error and prevent from happening.
    Thanks
    Morris
    Thank you Morris

    Hi MoCoder,
    According to your description, the error may be occurred by the following possible reasons, for example,
     the ram was be completely used, reached the maximum memory allocation configured values in SQL Server or virtual memory is full and so on. Before you install the related cumulative update of SQL Server 2012, I recommend you do the following
    steps for fixing this error. For example, allocate more memory to SQL Server, kill the unnecessary idle sessions, increase the RAM and virtual memory and reduce the number of users and so on.
    For more information, you can review the following article,
    http://sqlserverlearner.com/tag/there-is-insufficient-system-memory-in-resource-pool-internal-to-run-this-query
    In addition, you also need to check if there is the SQL Server memory leak, most of the memory leaks in SQL Server is caused by 3rd party Dll’s which are loaded in SQL Server process,
     or you enable the Auto Update Statistics Asynchronously statistics option in a database of Microsoft SQL Server 2012.
    For more information, see:
    http://support.microsoft.com/kb/2778088/en-us
    http://mssqlwiki.com/2012/12/04/sql-server-memory-leak/
    Regards,
    Sofiya Li
    If you have any feedback on our support, please click here.
    Sofiya Li
    TechNet Community Support

  • There is insufficient system memory in resource pool 'internal' to run this query

    hello Everyone,
    today i am getting one error while opening activity monitor.
    i am unable to open AM and i checked in sql server error log i received error message description about memory dump.
    below mentioned message. 
    There is insufficient system memory in resource pool 'internal' to run this query...

    RAM: 16 GB
    Proceesor : 24 cores
    Version:
    Microsoft SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64)   Jun 28 2012 08:36:30   Copyright (c) Microsoft Corporation  Enterprise Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) 
    Error:
    Memory Manager                                
    KB
    VM Reserved                                 6350064
    VM Committed                                 55380
    Locked Pages Allocated                            0
    Reserved Memory                                1024
    Reserved Memory In Use                            0
    2014-08-28 08:34:10.54 spid51     
    Memory node Id = 0                             KB
    VM Reserved                                 6348976
    VM Committed                                 54352
    Locked Pages Allocated                            0
    MultiPage Allocator                         22344
    SinglePage Allocator                         7800
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLGENERAL (node 0)                 KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                         1224
    MultiPage Allocator                            2800
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLBUFFERPOOL (node 0)             KB
    VM Reserved                                 6316032
    VM Committed                                 22784
    Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             0
    MultiPage Allocator                             400
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLQUERYEXEC (node 0)                KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                            120
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLOPTIMIZER (node 0)                KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                            648
    MultiPage Allocator                             976
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLUTILITIES (node 0)                KB
    VM Reserved                                    
    240 VM Committed                                    240
    Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             72
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLSTORENG (node 0)                 KB
    VM Reserved                                    
    384 VM Committed                                    384
    Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                            680
    MultiPage Allocator                            3848
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLCONNECTIONPOOL (node 0)         KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                            488
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLCLR (node 0)                     KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             8
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLSERVICEBROKER (node 0)            KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                            128
    MultiPage Allocator                             544
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLHTTP (node 0)                     KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             8
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SNI (node 0)                         KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             16
    MultiPage Allocator                             16
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_FULLTEXT (node 0)                    KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             24
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLXP (node 0)                     KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             16
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLQERESERVATIONS (node 0)         KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                         1312
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_XE_BUFFER (node 0)                 KB
    VM Reserved                                    4224
    VM Committed                                 4224
    Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             0
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SOSNODE (node 0)                     KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                         1008
    MultiPage Allocator                         11136
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_SQLSERVICEBROKERTRANSPORT (node 0)         KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             48
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    MEMORYCLERK_XE (node 0)                         KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             48
    MultiPage Allocator                             168
    2014-08-28 08:34:10.54 spid51     
    CACHESTORE_OBJCP (node 0)                        KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             8
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    CACHESTORE_SQLCP (node 0)                        KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                            272
    MultiPage Allocator                            1568
    2014-08-28 08:34:10.54 spid51     
    CACHESTORE_PHDR (node 0)                         KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                            168
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    CACHESTORE_XPROC (node 0)                        KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             16
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    CACHESTORE_TEMPTABLES (node 0)                 KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             16
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    CACHESTORE_NOTIF (node 0)                        KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages Allocated                            0
    SM Reserved                                    
    0 SM Committed                                    
    0 SinglePage Allocator                             16
    MultiPage Allocator                             0
    2014-08-28 08:34:10.54 spid51     
    CACHESTORE_VIEWDEFINITIONS (node 0)             KB
    VM Reserved                                    
    0 VM Committed                                    
    0 Locked Pages 

  • DBCC CHECKDB failure, SQL 2012, There is insufficient system memory in resource pool 'internal' to run this query.

    Hey, guys!
    Tried to find an answer, but nothing works for me.
    So on one of servers when I am trying to run DBCC CHECKDB throws two errors
    Msg 8921, Level 16, State 1, Line 1
    Check terminated. A failure was detected while collecting facts. Possibly tempdb out of space or a system table is inconsistent. Check previous errors.
    Msg 701, Level 17, State 123, Line 1
    There is insufficient system memory in resource pool 'internal' to run this query.
    This is a VM hosted on Hyper-V server 2012 R2. VM has Windows Server 2012 R2 and SQL Server 2012 Std. VM had 8 GB of RAM, I increased it to 12GB (static, not dynamic), also I increased paging file size in Windows and size of TEMPDB also recreated TEMPDB.
    I also tried to restore the Database, which throws an error from another server. On that server DBCC CHECKDB works fine, but it didn't help - I still receive the same error.  Can you suggest, please?

    Hi,
    I agree with you. It is probably a memory issue. First, we need to verify if it is an OS memory issue or caused by SQL Server itself.
    Need to use Performance Monitor:
    SQLServer:Memory
    Memory
    Dynamic Management Views:
    sys.dm_os_sys_info
    sys.dm_exec_query_memory_grants
    1. Use performance monitor to check OS memory: available memory(MB) and monitor the OS memory status before the query and when running the query. If it does not change, I can exclude the OS memory factor. Then, I can conclude
    this memory issue was caused by SQL Server internal. Also, check if there is Memory leak on your system.
    2. Use the below script in SQL Server Management Studio and Result to Text.
    while(1=1)
    begin
    print getdate()
    print '*****sys.dm_exec_query_memory_grants******'
    select * from sys.dm_exec_query_memory_grants
    print 'DBCC memorystatus'
    dbcc memorystatus
    waitfor delay '00:00:01'
    end
    Then, check SQLServer:Memory-Granted Workspace Memory (KB) when the issue occurs which specifies the total amount of memory currently granted to executing processes, such as hash, sort, bulk copy, and index creation operations.
    And compared with the information got in
    sys.dm_exec_query_memory_grants.
    3. In addition, use sys.dm_os_sys_info
     to identify bpool_commit_target and bpool_commited.
    In SQL Server 2012, the columns have been renamed as
    committed_target_kb and committed_kb.
    committed_kb  represents the committed memory in kilobytes (KB) in the memory manager. Does not include reserved memory in the memory manager.
    committed_target_kb represents the amount of memory, in kilobytes (KB), that can be consumed by SQL Server memory manager. The target amount is calculated using a variety of
    inputs like:
    the current state of the system including its      load
    the memory requested by current processes
    the amount of memory installed on the computer
    configuration parameters
    If committed_target_kb is larger than
    committed_kb, the memory manager will try to obtain additional memory. If
    committed_target_kb is smaller than committed_kb, the memory manager will try to shrink the amount of memory committed. The
    committed_target_kb always includes stolen and reserved memory.
    MSSQLSERVER_701
    http://msdn.microsoft.com/en-us/library/aa337311.aspx
    An in-depth look at SQL Server Memory–Part 3
    http://blogs.msdn.com/b/sqljourney/archive/2013/11/02/10402729.aspx
    INF: Using DBCC MEMORYSTATUS to Monitor SQL Server Memory Usage
    http://support.microsoft.com/kb/271624/en-us
    Hope it helps.
    Tracy Cai
    TechNet Community Support

  • SQL server 2012 : There is insufficient system memory in resource pool 'internal' to run this query

    We have recently upgraded from SQL server 2008 to SQL server 2012.
    We are getting this error when browsing to several pages on our website.
     There is insufficient system memory in resource pool 'internal' to run this query
    Most of the pages just try to do sql statements or stored procedures. I found a fix related to this error for sql 2012
    http://support.microsoft.com/kb/2769594/en-gb
    I did install it on server but the problem still remains.
    I have increased Maximum server memory to 20 GB to see if it will affect but it didnt.
    Memory on server is 32GB
    This is the sql version we have
    Microsoft SQL Server 2012 (SP1) - 11.0.3393.0 (X64)
        Oct 25 2013 19:04:40
        Copyright (c) Microsoft Corporation
        Standard Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: )
    How can i solve this error?It keeps on appearing when browsing .net website

    This is the ouptut of memory status
    Process/System Counts Value
    Available Physical Memory 6559842304
    Available Virtual Memory 8741595508736
    Available Paging File 17090838528
    Working Set 21094821888
    Percent of Committed Memory in WS 100
    Page Faults 160487165
    System physical memory high 1
    System physical memory low 0
    Process physical memory low 0
    Process virtual memory low 0
    Memory Manager KB
    VM Reserved 51506548
    VM Committed 20445040
    Locked Pages Allocated 0
    Large Pages Allocated 0
    Emergency Memory 1024
    Emergency Memory In Use 16
    Target Committed 20480008
    Current Committed 20445040
    Pages Allocated 6298528
    Pages Reserved 717408
    Pages Free 13820616
    Pages In Use 5143472
    Page Alloc Potential 14312512
    NUMA Growth Phase 0
    Last OOM Factor 1
    Last OS Error 0
    Memory node Id = 0 KB
    VM Reserved 51504948
    VM Committed 10218952
    Locked Pages Allocated 0
    Pages Allocated 1651360
    Pages Free 8323696
    Target Committed 10239992
    Current Committed 10218952
    Foreign Committed 96
    Away Committed 0
    Taken Away Committed 0
    Memory node Id = 1 KB
    VM Reserved 1536
    VM Committed 10226068
    Locked Pages Allocated 0
    Pages Allocated 4647208
    Pages Free 5496896
    Target Committed 10239992
    Current Committed 10226072
    Foreign Committed 0
    Away Committed 0
    Taken Away Committed 0
    Memory node Id = 64 KB
    VM Reserved 0
    VM Committed 20
    Locked Pages Allocated 0
    MEMORYCLERK_SQLGENERAL (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 19136
    MEMORYCLERK_SQLGENERAL (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 144
    MEMORYCLERK_SQLGENERAL (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 19280
    MEMORYCLERK_SQLBUFFERPOOL (node 0) KB
    VM Reserved 841608
    VM Committed 151560
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1081360
    MEMORYCLERK_SQLBUFFERPOOL (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1119416
    MEMORYCLERK_SQLBUFFERPOOL (Total) KB
    VM Reserved 841608
    VM Committed 151560
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2200776
    MEMORYCLERK_SQLQUERYEXEC (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 5768
    MEMORYCLERK_SQLQUERYEXEC (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 9624
    MEMORYCLERK_SQLQUERYEXEC (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 15392
    MEMORYCLERK_SQLOPTIMIZER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2480
    MEMORYCLERK_SQLUTILITIES (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 112
    MEMORYCLERK_SQLUTILITIES (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_SQLUTILITIES (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 128
    MEMORYCLERK_SQLSTORENG (node 0) KB
    VM Reserved 4800
    VM Committed 4800
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 7928
    MEMORYCLERK_SQLSTORENG (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 5856
    MEMORYCLERK_SQLSTORENG (Total) KB
    VM Reserved 4800
    VM Committed 4800
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 13784
    MEMORYCLERK_SQLCONNECTIONPOOL (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1184
    MEMORYCLERK_SQLCONNECTIONPOOL (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 536
    MEMORYCLERK_SQLCONNECTIONPOOL (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1720
    MEMORYCLERK_SQLCLR (node 0) KB
    VM Reserved 9450752
    VM Committed 10664
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 60648
    MEMORYCLERK_SQLSERVICEBROKER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 528
    MEMORYCLERK_SQLHTTP (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    MEMORYCLERK_SNI (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 40
    MEMORYCLERK_SNI (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 56
    MEMORYCLERK_SNI (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_SNI (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 112
    MEMORYCLERK_FULLTEXT (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 297936
    MEMORYCLERK_FULLTEXT (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 3406024
    MEMORYCLERK_FULLTEXT (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 3703960
    MEMORYCLERK_SQLXP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_BHF (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 152
    MEMORYCLERK_BHF (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 184
    MEMORYCLERK_BHF (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 336
    MEMORYCLERK_SQLQERESERVATIONS (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 841952
    MEMORYCLERK_XE_BUFFER (node 0) KB
    VM Reserved 3072
    VM Committed 3072
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 0
    MEMORYCLERK_XE_BUFFER (node 1) KB
    VM Reserved 1536
    VM Committed 1536
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 0
    MEMORYCLERK_XE_BUFFER (Total) KB
    VM Reserved 4608
    VM Committed 4608
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 0
    MEMORYCLERK_XTP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_HOST (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 40
    MEMORYCLERK_SOSNODE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 34168
    MEMORYCLERK_SOSNODE (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 11664
    MEMORYCLERK_SOSNODE (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2600
    MEMORYCLERK_SOSNODE (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 48432
    MEMORYCLERK_SOSOS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 192
    MEMORYCLERK_SOSMEMMANAGER (node 0) KB
    VM Reserved 85560
    VM Committed 85416
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 0
    MEMORYCLERK_FULLTEXT_SHMEM (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 576
    SM Committed 576
    Pages Allocated 0
    MEMORYCLERK_SQLSERVICEBROKERTRANSPORT (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 200
    MEMORYCLERK_FILETABLE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    MEMORYCLERK_XE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 3440
    MEMORYCLERK_SQLLOGPOOL (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 4208
    MEMORYCLERK_LWC (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 192
    MEMORYCLERK_FSCHUNKER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 48
    CACHESTORE_OBJCP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 5848
    CACHESTORE_SQLCP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 29664
    CACHESTORE_PHDR (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 4616
    CACHESTORE_XPROC (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 32
    CACHESTORE_TEMPTABLES (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_NOTIF (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_VIEWDEFINITIONS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_XMLDBTYPE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_XMLDBELEMENT (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_XMLDBATTRIBUTE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_STACKFRAMES (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_STACKFRAMES (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_STACKFRAMES (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_STACKFRAMES (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 24
    CACHESTORE_BROKERTBLACS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 48
    CACHESTORE_BROKERKEK (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_BROKERDSH (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_BROKERUSERCERTLOOKUP (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_BROKERRSB (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_BROKERREADONLY (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 32
    CACHESTORE_BROKERTO (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    CACHESTORE_EVENTS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_SEHOBTCOLUMNATTRIBUTE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 400
    CACHESTORE_SYSTEMROWSET (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1056
    CACHESTORE_SYSTEMROWSET (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 480
    CACHESTORE_SYSTEMROWSET (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1536
    CACHESTORE_CONVPRI (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 32
    CACHESTORE_CONVPRI (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_CONVPRI (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 48
    CACHESTORE_FULLTEXTSTOPLIST (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 56
    CACHESTORE_SEARCHPROPERTYLIST (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    CACHESTORE_COLUMNSTOREOBJECTPOOL (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 192
    CACHESTORE_XML_SELECTIVE_DG (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    USERSTORE_SCHEMAMGR (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8896
    USERSTORE_DBMETADATA (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 5088
    USERSTORE_DBMETADATA (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 4768
    USERSTORE_DBMETADATA (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 9856
    USERSTORE_TOKENPERM (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8104
    USERSTORE_TOKENPERM (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 448
    USERSTORE_TOKENPERM (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8552
    USERSTORE_OBJPERM (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1640
    USERSTORE_OBJPERM (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 600
    USERSTORE_OBJPERM (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2240
    USERSTORE_SXC (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 160
    USERSTORE_SXC (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 168
    USERSTORE_SXC (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 8
    USERSTORE_SXC (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 336
    OBJECTSTORE_LBSS (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 368
    OBJECTSTORE_LBSS (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 296
    OBJECTSTORE_LBSS (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 664
    OBJECTSTORE_SNI_PACKET (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 616
    OBJECTSTORE_SNI_PACKET (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 648
    OBJECTSTORE_SNI_PACKET (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 56
    OBJECTSTORE_SNI_PACKET (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 1320
    OBJECTSTORE_SERVICE_BROKER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 496
    OBJECTSTORE_LOCK_MANAGER (node 0) KB
    VM Reserved 65540
    VM Committed 65540
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 11816
    OBJECTSTORE_LOCK_MANAGER (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 11632
    OBJECTSTORE_LOCK_MANAGER (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 24
    OBJECTSTORE_LOCK_MANAGER (Total) KB
    VM Reserved 65540
    VM Committed 65540
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 23472
    OBJECTSTORE_SECAUDIT_EVENT_BUFFER (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    OBJECTSTORE_XACT_CACHE (node 0) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2224
    OBJECTSTORE_XACT_CACHE (node 1) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 2488
    OBJECTSTORE_XACT_CACHE (node 64) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 16
    OBJECTSTORE_XACT_CACHE (Total) KB
    VM Reserved 0
    VM Committed 0
    Locked Pages Allocated 0
    SM Reserved 0
    SM Committed 0
    Pages Allocated 4728
    Buffer Pool Value
    Database 274830
    Simulated 0
    Target 4096000
    Dirty 507
    In IO 0
    Latched 1
    Page Life Expectancy 11941
    Procedure Cache Value
    TotalProcs 333
    TotalPages 5914
    InUsePages 345
    Global Memory Objects Pages
    Resource 401
    Locks 2934
    XDES 561
    DirtyPageTracking 24
    SETLS 24
    SubpDesc Allocators 165
    SE SchemaManager 559
    SE Column Metadata Cache 549
    SE Column Metadata Cache Store 3
    SQLCache 270
    Replication 2
    ServerGlobal 52
    XP Global 2
    SortTables 3
    Query Memory Objects (internal) Value
    Grants 2
    Waiting 0
    Available 1677087
    Current Max 1814852
    Future Max 1814852
    Physical Max 1854482
    Next Request 0
    Waiting For 0
    Cost 0
    Timeout 0
    Wait Time 0
    Small Query Memory Objects (internal) Value
    Grants 0
    Waiting 0
    Available 95518
    Current Max 95518
    Future Max 95518
    Remote Query Memory Objects (internal) Value
    Grants 0
    Waiting 0
    Available 926250
    Current Max 926250
    Optimization Queue (internal) Value
    Overall Memory 17039360000
    Target Memory 16709148672
    Last Notification 1
    Timeout 6
    Early Termination Factor 5
    Small Gateway (internal) Value
    Configured Units 96
    Available Units 95
    Acquires 1
    Waiters 0
    Threshold Factor 380000
    Threshold 380000
    Medium Gateway (internal) Value
    Configured Units 24
    Available Units 24
    Acquires 0
    Waiters 0
    Threshold Factor 12
    Threshold 1392429056
    Big Gateway (internal) Value
    Configured Units 1
    Available Units 1
    Acquires 0
    Waiters 0
    Threshold Factor 8
    Threshold -1
    Memory Pool Manager Pages
    Reserved Current 0
    Reserved Limit 2095263
    Memory Pool (internal) Pages
    Allocations 464738
    Predicted 929941
    Private Target 0
    Private Limit 0
    Total Target 2560001
    Total Limit 2560001
    OOM Count 0
    MEMORYBROKER_FOR_CACHE (internal) Pages
    Allocations 14370
    Rate 1582
    Target Allocations 1646012
    Future Allocations 0
    Overall 2080000
    Last Notification 1
    MEMORYBROKER_FOR_STEAL (internal) Pages
    Allocations 409631
    Rate -242825
    Target Allocations 2039691
    Future Allocations 0
    Overall 2080000
    Last Notification 1
    MEMORYBROKER_FOR_RESERVE (internal) Pages
    Allocations 0
    Rate -59129
    Target Allocations 2080000
    Future Allocations 463125
    Overall 2080000
    Last Notification 1
    MEMORYBROKER_FOR_COMMITTED (internal) Pages
    Allocations 40735
    Rate 1
    Target Allocations 1670796
    Future Allocations 0
    Overall 2080000
    Last Notification 1
    MEMORYBROKER_FOR_XTP (internal) Pages
    Allocations 2
    Rate 0
    Target Allocations 1630062
    Future Allocations 0
    Overall 2080000
    Last Notification 1
    Memory Broker Clerk (Buffer Pool) Pages
    Total 274830
    Simulated 0
    Simulation Benefit 0
    Internal Benefit 0
    External Benefit 0
    Value Of Memory 0
    Periodic Freed 0
    Internal Freed 0
    Mainly we have SQL and IIS on server

  • Hyper-V Resource Pools for Memory and CPU

    Hi all,
    I'm trying to understand the concepts and details of resource pools in Hyper-V in Windows Server 2012. It seems as if there is almost no documentation on all that. Perhaps somebody can support me here, maybe I've not seen some docs yet.
    So far, I learned that resource pools in their current implementation serve mainly for metering purposes. You can create pools per tenant and then group VM resources into those pools to facilitate resource metering per tenant. That is, you enable metering
    once per pool and get all the data necessary to bill that one customer for all their resources (without metering individual VMs). Is that correct?
    Furthermore, it seems to me that an ethernet pool goes one step further by providing an abstraction level for virtual switches. As far as I've understood you can add multiple vSwitches to a pool and then connect a VM to the pool. Hyper-V then decides which
    actual switch to use. This may be handy in a multi-host environment if vSwitches on different hosts use different names although they connect to the same network. Is that correct?
    So - talking about actually managing that stuff I've learned how to create a pool and how to add VHD locations and virtual switches to a pool. Enabling resource metering for a pool then collects usage data from all the resources inside that pool.
    But now: I can create a pool for memory and a pool for CPU. But I cannot add resources to those. Neither can I add a complete VM to a pool. Now I'm launching a VM that belongs to a customer whose resources I'm metering. How will Hyper-V know that it's
    supposed to collect data on CPU and memory usage for that VM?
    Am I missing something here? Or is pool-based metering only good for ethernet and VHD resources, and CPU and memory still need to be metered per VM?
    Thanks for clarification,
    Nils
    Nils Kaczenski
    MVP Directory Services
    Hannover, Germany

    Thank you for the links. I already knew those, and unfortunately they are not matching my question. Two of them are about Windows Server 2008/R2, and one only lists a WMI interface. What I'm after is a new feature in Windows Server 2012, and I need conceptional
    information.
    Thanks for the research anyway. I appreciate that a lot!
    In the meantime I've gotten quite far in my own research. See my entry above of January 7th. Some additions:
    In Windows Server 2012, Hyper-V resource pools are mainly for metering purposes. You cannot compare them to resource pools in VMware.
    A resource pool in Hyper-V (2012) facilitates resource metering and billing for VM usage especially in hosting scenarios. You can either measure resource usage for single VMs, or you can group existing resources (such as CPU power, RAM, virtual hard disk
    storage, Ethernet traffic) into pools. Those pools will mostly be assigned to one customer each. That way you can bill the customer for their resource usage in a given time period by just querying the customer's pool.
    Metering only collects aggregated data with one value per resource (i.e. overall CPU usage, maximum VHD storage, summed Ethernet traffic and so on). You can control the time period by explicitly resetting the counter at any given time (a day, a week, a
    month or what you like).
    There is no detailed data. The aggregate values serve as a basis for billing, not as monitoring data. If you need detailed monitoring data use Performance Monitor.
    There is currently only one type of resource pool that adds an abstraction layer to a virtualization farm, and that is the Ethernet type. You can use that type for metering, but you can also use it to group a number of virtual switches (that connect to
    the same network segment) and then a VM connected to that pool will automatically use an appropriate virtual switch from the pool. You need no longer worry about virtual switch names across multiple hosts as long as all equivalent virtual switches are
    added to the pool.
    While you can manage two types of pool resources in the GUI (VHD pools and Ethernet pools) you should only manage resource pools via PowerShell. Only there will you be able to control what happens. And only PowerShell provides a means to start, stop, and
    reset metering and query metering data.
    The process to use resource pools in Hyper-V (2012) in short:
    First create a new pool via PowerShell (New-VMResourcePool). (In case of a VHD pool you must specify the VHD storage paths to add to the pool in the moment you create the pool.)
    In case of an Ethernet pool add existing virtual switches to the pool (Add-VMSwitch).
    Reconfigure existing VMs that you want to measure so that they use resources from the pool. The PowerShell
    Set-VM* commands accept a parameter -ResourcePoolName to do that. Example:
    Set-VMMemory -VMName APP-02 -ResourcePoolName MyPool1
    Start measuring with Enable-VMResourceMetering.
    Query collected data as often as you need with Measure-VMResourcePool.
    Note that you should specify the pool resource type in the command to get reliable data (see my post above, Jan 7th).
    When a metering period (such as a week or a month) has passed, reset the counter to zero with
    Reset-VMResourceMetering.
    Hope that helps. I consider this the answer to my own question. ;)
    Here's some links I collected:
    http://itproctology.blogspot.ca/2012/12/hyper-v-resource-pool-introduction.html
    http://www.ms4u.info/2012/12/configure-ethernet-resource-pool-in.html
    http://blogs.technet.com/b/virtualization/archive/2012/08/16/introduction-to-resource-metering.aspx
    http://social.technet.microsoft.com/Forums/en-US/winserverhyperv/thread/1ce4e2b2-8fdd-4f16-8ab6-e1e1da6d07e3
    Best wishes, Nils
    Nils Kaczenski
    MVP Directory Services
    Hannover, Germany

  • Resource Pool "Observer" - how failover works in SCOM 2012

    We currently have 5 Management Servers SCOM 2012 SP1 Cu6 + a SQL Failover Cluster for SQL database of SCOM/SCOMDW.
    2 of these Management Servers are dedicated for network monitoring of approximately 200-400 network devices (including certified and generic devices). Additionally, we have about 20 distributed apps + 30-40 websphere JVM instances defined which are spread
    accross all management servers.
    my questions
    1.) how can I determine, where a distributed app or network device or websphere instance is currently attached to? They belong to any member in the resource pool, but I haven't found any possbility to query scom (e.g. PowerShell) where a specific entity is
    currently attached.
    2.) for network monitoring, a seperate resource pool is defined (no scom agent is connected to these 2 servers). These two servers have local SSD disks, 2x quad core CPUs and 24GB memory each. When one of these management servers is rebooted, the mistery
    starts. Many distributed apps throw a critical error (unavailable), in the eventlog many network devices throw also an error that they are offline, in SCOM they turn gray. The remaining management server is nearly exploding (high IOPS without much throughput)
    for approx. 30 minutes, it seems that after return of the second management server they try to balance somehow the instances, but with many errors. (antivirus is turned off)
    => now, after several days, we've found somewhere in the internet the info that with 2 management servers in a resource pool, an observer should be defined. Should this resolve our issue or will e.g. the distributed apps always through an alert until their
    state is recalculated? The documentation to the observer function is rare, and we are not able to find any further hint how to resolve our issue when doing reboots of management servers.
    Thanks so far!
    Best Regards Klaus

    Dear Alexis,
    Thanks for your answer. We've now changed the "All Management Server" Resource Pool to "Manual Membership" (through PowerShell), and clearly defined Observers for each resource Pool. Now, if any management server fails, the objects (distributed App, WebSphere
    Instance, ...) turn into "not monitored" instead of "offline" which makes the difference now.
    However, the network monitoring servers need about 30 to 60 minutes after reboot of one of them until they've reprocessed and recalculated everything. Within this time, the disk has 100% active time with approx. 1500 disk transfers/sec and about 1MB/s throughput.
    (we've about 300 network devices - 150 are certified ones - attached to the management servers)
    Best Regards Klaus

  • Create OLE DB synthetic that has failover ability if proxy is down much like resource pools

    As the title indicates, I would like to create a monitor that is fault tolerant and queries an OLE DB datasource.  Today you can target multiple agents to perform a synthetic transaction using the OOB templates, however I only want a single agent
    performing the query at any given time.  If the primary proxy/agent is down, I would like the synthetic transaction to failover to the other proxy node(s).  This behavior is like network or unix/linux devices which use resource pools.

    You must create unhosted class or it can be unhosted singleton class (group) and target your monitor on this class.
    Vladimir Zelenov | http://systemcenter4all.wordpress.com
    I assume I would then create a rollup monitor so that I don't trigger an alert should one proxy be down or experience a technical issue.

  • Master Projects, Subprojects, Resource Pool

    I have reviewed the previous threads and have not found a good match with my issue.  Here goes.
    I have a project plan (Plan1) stored on OneDrive.  I have a second plan that is my resource pool stored in the same location.  I open both plans by clicking on them in OneDrive.  When I go into Plan1, I go to Resource Pool -> Share Resources. 
    The pop-up box comes up with the 'Use Own Resources' selected.  The other option of 'Use Resources (requires at least one open resource pool)' is greyed out.  How do I get it such that I can select the second option and enter the name of my resource
    pool. 
    The resource pool is a .mpp file that has no tasks and it has about 70 resources defined.  Is there something I must toggle to show that it is a resource pool file? 
    I am using MS Project 2013 Professional.  I am not using Project Server or PWA. 
    Thanks in advance for your thoughts and assistance!
    Hillary
    Clarification:  I have both plans (which are both on OneDrive) opened at the same time - and the Plan1 file does not recognize the the other file (pool) as a potential candidate for a resource pool.
    Clarification #2:  When I copy the resource pool to my desktop, and then open it, Plan1 (on OneDrive) is able to see the resource pool and share it...

    HRDavidson,
    Convolved it is and you are also setting yourself up for corruption as I've indicated in my initial response. This is what I suggest. Since each element of the overall structure (i.e. resource pool, sharer files, master file, network, multi-user environment)
    contributes to the probability of corruption, your best chance for minimizing corruption is to eliminate and/or control each element.
    The ideal configuration is for all files to be resident on a local drive with one person in control but that probably isn't going to work in your scenario. However, there are some things you can do. First, I would not maintain a dynamic master file. You
    can still see the whole plan with all 6 individual projects whenever you need by creating a static master (i.e. uncheck the "link to project" option in the lower right corner of the Insert Project window). That will produce a new single file that
    is a snapshot in time of all the individual projects. The main advantage is that it does not create an additional link structure. Second, develop a set of groundrules on file maintenance and make sure all users are trained. The basic groundrules are: never
    move, rename, replace, or save off any files in the structure. You may wish to add other rules concerning what users can and cannot change with regard to data.
    Using the above approach you will still have a resource pool/sharer file linked structure on a network and it will still be prone to corruption but your chances for success will be increased. If you want to totally eliminate, (although nothing is really
    "total"), the chance of corruption, combine the whole structure into a single file with either one person in charge or a defined set of access rules (e.g. time) for each user. Filtering, grouping or other techniques can facilitate easier maintenance
    by each user.
    The other option of course is to move to Project Server.
    Those are my thoughts. Perhaps Dale and Rod will drop in with their comments.
    John

  • MS Project Very Slow and Project Files Large when Using Shared Resource Pool

    Hello,
    We are using MS Project 2010 Professional in our organization and using a shared resource pool so we can easily identify resource conflicts.  When we started this process many months ago the resource pool worked great.  Now that we have nearly
    all of our projects (~40) using the resource pool, it has become essentially unusable.  Each project file that is sharing the resource pool is 12 MB or greater in file size, and most of the project files contain less than 100 lines.  Saving any file
    takes ~4 minutes.  As a result, many of the resource managers and project managers are starting to avoid using MS Project which is undermining our original intent.
    Any thoughts on what we could try to regain the usability, make the file sizes smaller, improve save times, etc.?  Will MS Project Server fix all of these issues?
    Thanks,
    Josh

    If any of your PMs renamed, moved or over-wrote their project file whilst linked to the Resource Pool or a master, then the file may well have corrupted itself or the pool or both. With 40 files, you can guarantee one or more PMs will do one of the above,
    so file corruption is a when, not if (2days or 2 years or more).
    For 40 projects Project Server or any solution that copies data to a database so the resource data can be consolidated is needed. Project Server is not a simple application, it's a full server and requires proper training and processes to add value. And
    it needs configuring by someone who knows what they're doing!
    In the mean time try unattaching all project files from the pool, then create a new blank pool and re-attach.You will also need to File, Save as to repair each project file if needed. For bad corruption save as to a .xml format then re-import to a blank
    project.
    Or, create a new master each time by inserting all projects into a new blank project, but deselecting the Link option. All tasks are then copied and the resource data consolidated. Record a macro to make creating this very quick and easy (provided your network
    isn't too slow).
    <p>Rod Gill</p> <p><a href="http://www.project-systems.co.nz/project-vba-book/index.html/">The one and only Project VBA Book</a> <a href="http://www.project-systems.co.nz/"></p> <p>Rod
    Gill Project Management</a></p>

  • Resource pool selection enhancement in UCCX 7.0

    Good day. The issue is with our current CSQ setup and available resource pool selection criteria. Just for your record here is how its currently configured.
    We have five languages based CSQ’s operating in our call centre and following is how they are currently configured.
    I. English
    Contains all agents in the call centre
    Resource pool selection mode – Resource Group
    Resource Selection Criteria – Circular
    II. Italian / French / German / Spanish
    Resource pool selection mode – Resource Skills
    Resource Selection Criteria – Most Skilled
    Minimum Competence Level - 5 for respective CSQ
    Agents skill ratings are set currently in following manner
    Italian Agents – Italian (10), German (5), French (5), Spanish (5)
    French Agents – French (10), German (5), Italian (5), Spanish (5)
    German Agents – German (10), French (5), Italian (5), Spanish (5)
    Spanish Agents – Spanish (10), French (5), Italian (5), German (5)
    Now , all non- English CSQ are setup based on “Resource Skills” and “ Most Skilled” algorithm being set as resource selection criteria. Which currently defaults to “ Longest Available” if two or more agents have equal competency level. Things are nice and smooth until calls routed to Longest Available agent and they go for shorter smoke or toilet breaks. Calls then get routed to the next longest available agent who in our case have already answered the previous call coming to same CSQ. So what’s happening here is, agents who doesn’t go for these shorter breaks get punished with more calls.
    We don’t have this problem on English CSQ as we have different resource pool selection set in there. Which is Set as Resource group with “Circular” as resource selection criteria. This works fine because there’s no fall-back to “ Longest Available”. We have tried every other selection criteria but none works for us unfortunately. Raising this with you hoping you can advise different technique or guide us to the right path to re-design our non-English CSQs. Can you tell if we can create additional resource selection criteria other than the default ones? Can we add something like followings
    •1. Lowest total talk time
    •2. Least Handled contacts
    •3. Circular ( like you can select when agents are in recourse group )
    Also , is there a way to change the default selection criteria “ Longest Available” to something else. E.g. Shortest Average Handle Time or anything else.
    Any help would be highly appriciated.
    Thanks
    mschowdhury

    If you're using skills-based routing it's going to work the way you've described it above: the most skilled agent who has been in the READY state the longest will be offered the next call. If you want to use Circular or Most Handled Contacts (Least Handled Contacts is not an option sadly) you must use a Resource Group on the CSQ instead of a Skill. The problem with that is that you can only assign an agent to one Resource Group.
    Sorry but this is sort of an either/or decision. You can't mix the behaviors.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • Master Project / Resource Pool

    We currently have a master project schedule that shows all our current on going projects in one schedule but unfortantely when we try to run a Visual Report for Resource Usage, it is taking some people and multiply their hours.
    So say "Dave" was scheduled for 100 hours total across all projects, when we run the report it is now making him show that he is scheduled for 300 hours.
    We have a resource pool and all our PM's pull from this.
    Can you please help us in trying to figure out why, this report is not working correctly.
    Thanks :)

    If you have a master project with links to many projects plus a resource pool, then you have a fragile system based on old DDE technology(DDE does teh auto update between files). If any of these files are ona wide arear network where network quality is less
    than 99.99% then file corruption is likely. If any user moves, overwrites or renames any of the linked files the file corruption die are thrown.
    So, my first suspect is a file corruption. To fix break all the links then re-create master and pool (with new blank projects). Ideally use master files where projects are inserted with no link. This consolidates resources as well. I use a recorded macro
    to re-create a master when needed.
    If you have Project 2007 it is ESSENTIAL that you apply SP3 and the latest cumulative update. Project 2007 without Service Packs is very bug ridden.
    Rod Gill
    The one and only Project VBA Book
    Rod Gill Project Management

  • Change Default resources Assignment Owner in Project Professional, in the checked-out Enterprise Resource Pool?

    Hi,
    i'm not able to change the default Assignment Owner (massive) in the Checked-out Enterprise resource pool in Project Professional 2013.
    I've also unlocked the "Windows account edit" in the Register Editor.
    Do you know if is this possible or i have to change it for each resource one by one???
    Thanks
    Best regards 
    Daniele
    Daniele

    Hello Daniele,
    I think what you are seeing is by design behavior. Per below article you can set the Default Assignment owner in Project Web Access and it appears in various places in Project client.
    http://office.microsoft.com/en-in/project-help/default-assignment-owner-resource-field-HA010167482.aspx
    If you want to set the same default assignment owner for multiple resources then you can try bulk edit option in resource center.
    Hope this helps.
    Thank you,
    Kiran K.

Maybe you are looking for

  • 24" imac overheating??

    We returned from 3 weeks vacation when I had the computer turned off.  Since, my computer seems to be getting very hot and twice when turned on has shown the white screen.  By unplugging for a while and rebooting my computer works again.  Is there so

  • Horizontal Menu Bar Drop Downs Not Displaying

    I've had this problem before and here I am grappling with it again.  I have a Spry horizontal menu bar with a few drop down menus on it.  The drop downs are not displaying above the other layers on the page.  http://bakerlake50k.com/draft/index.php N

  • NAS folder not found

    hi, following problem: i've got a Mac Book Pro (MBP) running on Lion and a IMac running on Snow Leopard. Both Computers are connected to the same wireless network. I've attatched an external hard drive the the wireless router with all my media on it.

  • How to use a thirdparty look and feel

    how to use a thirdparty look and feel i download some from http://javootoo.l2fprod.com/ but how to use?

  • Re:Dropping the flow from the Schema

    Dear friends, How to drop a flow which was once created in my schema.There is a facility of creating a new flow,rewriting the existing flow but dropping or deleting a flow could not be seen in Flow Builder.Please advise. Harirajan