Skip to content

Latest commit

 

History

History
79 lines (59 loc) · 3.31 KB

File metadata and controls

79 lines (59 loc) · 3.31 KB
title DROP EXTERNAL RESOURCE POOL (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 08/07/2019
ms.prod sql
ms.prod_service sql-database
ms.reviewer
ms.technology machine-learning-services
ms.topic language-reference
f1_keywords
DROP EXTERNAL RESOURCE POOL
DROP_EXTERNAL_RESOURCE_POOL_TSQL
dev_langs
TSQL
helpviewer_keywords
DROP EXTERNAL RESOURCE POOL statement
ms.assetid e2fa01bd-96ff-4ea9-bb08-6cb6b6adf68c
author dphansen
ms.author davidph
manager cgronlund

DROP EXTERNAL RESOURCE POOL (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2016-xxxx-xxxx-xxx-md]

Deletes a Resource Governor external resource pool used to define resources for external processes.

::: moniker range="=sql-server-2016||=sqlallproducts-allversions" For [!INCLUDErsql-productname-md] in [!INCLUDEsssql15-md], the external pool governs rterm.exe, BxlServer.exe, and other processes spawned by them. ::: moniker-end

::: moniker range=">=sql-server-2017||=sqlallproducts-allversions" For [!INCLUDErsql-productnamenew-md], the external pool governs rterm.exe, python.exe, BxlServer.exe, and other processes spawned by them. ::: moniker-end

External resource pools are created by using CREATE EXTERNAL RESOURCE POOL (Transact-SQL) and modified by using ALTER EXTERNAL RESOURCE POOL (Transact-SQL).

Topic link icon Transact-SQL Syntax Conventions.

Syntax

DROP EXTERNAL RESOURCE POOL pool_name  

Arguments

pool_name
The name of the external resource pool to be deleted.

Remarks

You cannot drop an external resource pool if it contains workload groups.

You cannot drop the Resource Governor default or internal pools.

When you are executing DDL statements, we recommend that you be familiar with Resource Governor states. For more information, see Resource Governor.

Permissions

Requires CONTROL SERVER permission.

Examples

The following example drops the external resource pool named ex_pool.

DROP EXTERNAL RESOURCE POOL ex_pool;  
GO  
ALTER RESOURCE GOVERNOR RECONFIGURE;  
GO  

See Also