Skip to content

Latest commit

 

History

History
74 lines (59 loc) · 3.2 KB

File metadata and controls

74 lines (59 loc) · 3.2 KB
title DROP EXTERNAL RESOURCE POOL (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/17/2016
ms.prod sql
ms.prod_service sql-database
ms.component t-sql|statements
ms.reviewer
ms.suite sql
ms.technology t-sql
ms.tgt_pltfrm
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
caps.latest.revision 6
author edmacauley
ms.author edmaca
manager craigg

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. For R Services the external pool governs rterm.exe, BxlServer.exe, and other processes spawned by them. 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.

The reconfiguration does n

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

external scripts enabled Server Configuration Option
SQL Server R Services
Known Issues for SQL Server R Services
CREATE EXTERNAL RESOURCE POOL (Transact-SQL)
ALTER EXTERNAL RESOURCE POOL (Transact-SQL)
DROP WORKLOAD GROUP (Transact-SQL)
DROP RESOURCE POOL (Transact-SQL)