The DROP_JOB_CLASS procedure is used to delete a job class.
Applicability
This topic applies only to Oracle tenants of OceanBase Database Enterprise Edition. OceanBase Database Community Edition does not support this procedure.
Syntax
DBMS_SCHEDULER.DROP_JOB_CLASS ( job_class_name IN VARCHAR2,
force IN BOOLEAN DEFAULT FALSE);
Parameters
| Parameter | Description |
|---|---|
| job_class_name | The name of the job class. |
| force | This parameter only supports false. If the job_class has associated jobs, the drop class operation will fail. |
Examples
obclient> BEGIN
-> DBMS_SCHEDULER.DROP_JOB_CLASS(
-> job_class_name => 'my_job_class'
-> );
-> END;
-> /
Query OK, 1 row affected (0.021 sec)
