REMOVE v14

The REMOVE proceduzre deletes the specified job from the database. You must resubmit the job using the SUBMIT procedure to execute it again. The stored procedure that was associated with the job isn't deleted.

REMOVE(<job> BINARY_INTEGER)

Parameter

job

Identifier of the job to remove from the database.

Examples

Remove a job from the database:

BEGIN
    DBMS_JOB.REMOVE(104);
END;