Change Resource Pool Settings

You can change resource pool settings by using SQL Server Management Studio or Transact-SQL.

  • Before you begin: Limitations and Restrictions, Permissions

  • To change the settings for a resource pool, using: SQL Server Management Studio, Transact-SQL

Before You Begin

Limitations and Restrictions

The maximum CPU percentage must be equal to or higher than the minimum CPU percentage. The maximum memory percentage must be equal to or higher than the minimum memory percentage.

The sums of the minimum CPU percentages and minimum memory percentages for all resource pools must not exceed 100.

[Top]

Permissions

Changing resource pool settings requires CONTROL SERVER permission.

[Top]

Change Resource Pool Settings Using SQL Server Management Studio

To change resource pool settings by using SQL Server Management Studio

  1. In SQL Server Management Studio, open Object Explorer and recursively expand the Management node down to and including Resource Pools.

  2. Right-click the resource pool to be modified, and then click Properties.

  3. In the Resource Governor Properties page, select the row for the resource pool in the Resource pools grid if it is not automatically selected.

  4. Click or double-click the cells in the row to be changed, and enter the new values.

  5. To save the changes, click OK

Change Resource Pool Settings Using Transact-SQL

To change resource pool settings by using Transact-SQL

  1. Run the ALTER RESOURCE POOL statement specifying the property values to be changed.

  2. Run the ALTER RESOURCE GOVERNOR RECONFIGURE statement.

Example (Transact-SQL)

The following example changes the max CPU percentage setting for the resource pool named poolAdhoc.

ALTER RESOURCE POOL poolAdhoc
WITH (MAX_CPU_PERCENT = 25);
GO
ALTER RESOURCE GOVERNOR RECONFIGURE;
GO

[Top]

See Also

Reference

ALTER RESOURCE POOL (Transact-SQL)

ALTER RESOURCE GOVERNOR (Transact-SQL)

Concepts

Resource Governor

Enable Resource Governor

Create a Resource Pool

Delete a Resource Pool

Resource Governor Workload Group

Resource Governor Classifier Function