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 WORKSPACE GROUP
On this page
The DROP WORKSPACE GROUP command deletes the specified cluster group.
Syntax
DROP WORKSPACE GROUP [ IF EXISTS ]
{ ID '<group_ID>' | '<group_name>' }
[ WAIT ON TERMINATED ]
[ FORCE ]Argument
-
group_,ID group_: ID or name of the cluster group to delete.name
Remarks
-
Specify the
IF EXISTSclause to attempt the delete operation only if a cluster group with the specified ID or name exists. -
Specify the
WAIT ON TERMINATEDclause to pause query execution until the cluster group is in theTERMINATEDstate. -
If the
FORCEclause is specified, the cluster group is deleted (terminated) even if it contains clusters.
Example
The following command deletes a cluster group named s2-group:
DROP WORKSPACE GROUP 's2-group' FORCE;
Last modified: