Skip to content

Latest commit

 

History

History
56 lines (49 loc) · 3.97 KB

File metadata and controls

56 lines (49 loc) · 3.97 KB
title sys.resource_governor_resource_pools (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 08/09/2016
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
sys.resource_governor_resource_pools
resource_governor_resource_pools
sys.resource_governor_resource_pools_TSQL
resource_governor_resource_pools_TSQL
dev_langs
TSQL
helpviewer_keywords
sys.resource_governor_resource_pools catalog view
ms.assetid 56793e9c-aa90-452e-88c6-d9b799239888
caps.latest.revision 26
author JennieHubbard
ms.author jhubbard
manager jhubbard

sys.resource_governor_resource_pools (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx_md]

Returns the stored resource pool configuration in [!INCLUDEssNoVersion]. Each row of the view determines the configuration of a pool.

Column name Data type Description
pool_id int Unique ID of the resource pool. Is not nullable.
name sysname Name of the resource pool. Is not nullable.
min_cpu_percent int Guaranteed average CPU bandwidth for all requests in the resource pool when there is CPU contention. Is not nullable.
max_cpu_percent int Maximum average CPU bandwidth allowed for all requests in the resource pool when there is CPU contention. Is not nullable.
min_memory_percent int Guaranteed amount of memory for all requests in the resource pool. This is not shared with other resource pools. Is not nullable.
max_memory_percent int Percentage of total server memory that can be used by requests in this resource pool. Is not nullable. The effective maximum depends on the pool minimums. For example, max_memory_percent can be set to 100, but the effective maximum is lower.
cap_cpu_percent int Applies to: [!INCLUDEssSQL11] through [!INCLUDEssCurrent].

Hard cap on the CPU bandwidth that all requests in the resource pool will receive. Limits the maximum CPU bandwidth to the specified level. The allowed range for value is from 1 through 100.
min_iops_per_volume int Applies to: [!INCLUDEssSQL14] through [!INCLUDEssCurrent].

The minimum I/O operations per second (IOPS) per volume setting for this pool. 0 = no reservation. Cannot be null.
max_iops_per_volume int Applies to: [!INCLUDEssSQL14] through [!INCLUDEssCurrent].

The maximum I/O operations per second (IOPS) per volume setting for this pool. 0 = unlimited. Cannot be null.

Remarks

The catalog view displays the stored metadata. To see the in-memory configuration, use the corresponding dynamic management view, sys.dm_resource_governor_resource_pools (Transact-SQL).

Permissions

Requires VIEW ANY DEFINITION permission to view contents, requires CONTROL SERVER permission to change contents.

See Also

Resource Governor Catalog Views (Transact-SQL)
sys.dm_resource_governor_resource_pools (Transact-SQL)
Resource Governor
sys.resource_governor_external_resource_pools (Transact-SQL)