Important
New database features are no longer connected to engine versions; features are now enabled independently during scheduled update windows, and “major” and “minor” releases no longer exist in Helios. Please visit the release notes to view the latest features available in your database clusters.
DROP RESOURCE POOL
On this page
The DROP RESOURCE POOL command drops the specified resource pool.
Syntax
DROP RESOURCE POOL pool_name
Remarks
-
pool_: The name of a resource pool.name -
DROP POOLprivileges are required for dropping a resource pool. -
Refer to the Permissions Matrix for the required permissions.
Warning
Open connections to a database are assigned to a specific resource pool (or default_ if no other pool is selected).resource_ to another value; otherwise only DDL commands can be run from those connections until a new resource_ value has been set.
You cannot drop the built-in resource pools.
Example
This example assumes that the resource pool test_ exists and that you want to drop it.
Before dropping test_, set the current resource pool to a value other than test_:
SET resource_pool = default_pool;
Then drop the test_:
DROP RESOURCE POOL test_pool;
Last modified: