Drop Schedule

Summary

The DROP SCHEDULE command removes the specified schedule from Connect.

Syntax

drop schedule [if exists] <schedule_name>;

Parameters

Parameter
Description
[if exists]
(Optional) Suppresses XSQL error message if schedule does not exist.
<schedule_name> The name of the schedule.

Examples

drop schedule sch_extract_pay_file;
drop schedule if exists sch_upload_SFDC_opps;

Related Commands

ALTER SCHEDULE

CREATE SCHEDULE

RESUME SCHEDULE

SHOW SCHEDULES

SUSPEND SCHEDULE