create thread pool

Description

Creates a user-defined thread pool.

Considerations for process mode

create thread pool is not supported in process mode.

Syntax

create thread pool pool_name with thread count = count
[, pool description = description ]
[idle timeout = time_period]

Parameters

pool_name

name of the pool you are creating.

thread count = count

number of threads in the pool. Must be greater than or equal to 1.

pool description = description

(Optional) describes the pool’s purpose. Must be fewer than 256 characters.

idle timeout = time_period

time, in microseconds, that threads look for work before going to sleep. The default is 100 microseconds. A value of -1 means the threads never go to sleep, and continue to consume CPU if no work is available. A value of 0 indicates that threads immediately go to sleep if they find no work.

Examples

Example 1

Creates a thread pool named sales_pool with 10 threads:

create thread pool sales_pool with thread count = 10

Example 2

Creates a thread pool named order_pool, which includes a description:

create thread pool order_pool with thread count = 10, pool description = 'used for handling order entry users' 

Example 3

Creates a thread pool named order_pool with 2 threads and an idle timeout of 500 microseconds:

create thread pool order_pool with thread count = 2, idle timeout = 500

Usage

Standards

ANSI SQL – Compliance level: Transact-SQL extension

Permissions

create thread pool permission defaults to the system administrator. create thread pool permission is not included in the grant all command.

Auditing

Event

Audit option

Command or access audited

Information in extrainfo

42

Pool name and thread count