The CANCEL_EVOLVE_TASK procedure is used to cancel an ongoing evolution task.
Syntax
DBMS_SPM.CANCEL_EVOLVE_TASK (
task_name INVARCHAR2);
Parameters
| Parameter | Description |
|---|---|
| database_name | The name of the database. This parameter is required only in MySQL-compatible mode. |
| task_name | The name of the task, which is the name of the evolution task in the current OceanBase Database, identified by SQL_ID. |
Examples
BEGIN
DBMS_SPM.CANCEL_EVOLVE_TASK ('SYS_AUTO_SPM_EVOLVE_TASK');
END;