The DELETE_CONSUMER_GROUP procedure is used to delete a consumer group.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition provides only MySQL mode.
Syntax
DBMS_RESOURCE_MANAGER.DELETE_CONSUMER_GROUP (
consumer_group IN VARCHAR2);
Parameters
consumer_group specifies the name of the consumer group to be deleted.
Examples
obclient> BEGIN
DBMS_RESOURCE_MANAGER.DELETE_CONSUMER_GROUP ('group1');
END ;