The DROP_EVOLVE_TASK procedure is used to drop an evolution task.
Syntax
DBMS_SPM.DROP_EVOLVE_TASK (
database_name VARCHAR(65535),
task_name VARCHAR(65535));
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 represented by SQL_ID in the current OceanBase Database. |
Examples
BEGIN
DBMS_SPM.DROP_EVOLVE_TASK ('SYS_AUTO_SPM_EVOLVE_TASK');
END;