Create a Workload Group

You can create a workload group by using SQL Server Management Studio or Transact-SQL.

  • Before you begin: Limitations and Restrictions, Permissions

  • To create a workload group, using: SQL Server Management Studio, Transact-SQL

Before You Begin

Limitations and Restrictions

REQUEST_MAX_MEMORY_GRANT_PERCENT

The memory consumed by index creation on a non-aligned partitioned table is proportional to the number of partitions involved. If the total required memory exceeds the per-query limit, (REQUEST_MAX_MEMORY_GRANT_PERCENT) imposed by the workload group setting, this index creation may fail. Because the default workload group allows a query to exceed the per-query limit with the minimum required memory to start for SQL Server 2005 compatibility, the user may be able to run the same index creation in the default workload group, if the default resource pool has enough total memory configured to run such a query.

In SQL Server 2005, index creation is allowed to use more memory workspace than initially granted for performance. This special handling is supported by Resource Governor in SQL Server 2012. However, the initial grant and any additional memory grant are limited by the workload group and resource pool settings.

[Top]

Permissions

Creating a workload group requires CONTROL SERVER permission.

[Top]

Create a Workload Group Using SQL Server Management Studio

To create a workload group by using SQL Server Management Studio

  1. In Object Explorer, recursively expand the Management node down to and including the resource pool that contains the workload group to be modified.

  2. Right-click the Workload Groups folder, and then click New Workload Group.

  3. In the Resource pools grid, ensure the resource pool where you want to add the workload group is highlighted.

  4. The Workload groups for resource pool grid will have a new line with a blank name and default values in the other columns.

  5. Click the Name cell and enter a name for the workload group.

  6. Click or double-click any other cells in the row you want to change from their default settings, and enter the new values.

  7. To save the changes, click OK

Create a Workload Group Using Transact-SQL

To create a workload group by using Transact-SQL

  1. Run the CREATE WORKLOAD GROUP statement specifying the property values to be set.

  2. Run the ALTER RESOURCE GOVERNOR RECONFIGURE statement.

Example (Transact-SQL)

The following example creates a workload group named groupAdhoc in the resource pool named poolAdhoc.

CREATE WORKLOAD GROUP groupAdhoc
USING poolAdhoc;
GO
ALTER RESOURCE GOVERNOR RECONFIGURE;
GO

[Top]

See Also

Tasks

Create and Test a Classifier User-Defined Function

Reference

CREATE WORKLOAD GROUP (Transact-SQL)

ALTER RESOURCE GOVERNOR (Transact-SQL)

Concepts

Resource Governor

Enable Resource Governor

Create a Resource Pool

Change Workload Group Settings