DROP RESOURCE POOL deletes a resource pool.
If a role has been associated with a resource pool, the resource pool cannot be deleted.
The user must have the DROP permission in order to delete a resource pool.
1 | DROP RESOURCE POOL [ IF EXISTS ] pool_name; |
Sends a notice instead of an error if the stored procedure does not exist.
Specifies the name of a created resource pool.
Value range: a string. It must comply with the naming convention.
Delete the resource pool named pool:
1 | DROP RESOURCE POOL pool; |