The DELETE_PLAN procedure is used to delete a specified plan and all its associated plan directives.
Applicability
This topic applies only to OceanBase Database Enterprise Edition. OceanBase Database Community Edition provides only MySQL mode.
Syntax
DBMS_RESOURCE_MANAGER.DELETE_PLAN (
plan IN VARCHAR2);
Parameters
plan specifies the name of the resource plan to be deleted.
Examples
obclient> BEGIN
DBMS_RESOURCE_MANAGER.DELETE_PLAN('NIGHT');
END ;