Tasks: Alter singleton tasks without suspending them first (Pending)¶
Attention
This behavior change is in the 2026_06 bundle.
For the current status of the bundle, refer to Bundle history.
This behavior change lets you run ALTER TASK on a resumed singleton task without first suspending it. A singleton task is a standalone task that has no predecessor, no successor, and no finalizer (that is, it is not part of a task graph). The updated task properties take effect on subsequent scheduled executions of the task.
This change applies only to singleton tasks. Altering a task that is part of a task graph (a task with a predecessor, successor, or finalizer) continues to require the task to be suspended first.
- Before the change:
Running
ALTER TASKon a resumed singleton task returns an error. To modify the task, you must first suspend it, alter it, and then resume it:- After the change:
Running
ALTER TASKon a resumed singleton task succeeds without suspending the task. The updated properties take effect on subsequent scheduled executions of the task:
Ref: 2363