Batch instance restart
You can restart a batch instance from the Batch Instance Management screen. Select a batch instance and click Restart to select in which module the batch instance restarts.
Only batch instances in the following states are available to restart:
-
RUNNING
-
ERROR
-
READY_FOR_REVIEW
-
READY_FOR_VALIDATION
Restart all batches in error state
If you have multiple batch instances in an ERROR state, you may be able to restart them all at once if you are using SQL.
In your SQL client, run the following SQL query:
USE <db_name>; UPDATE batch_instance SET
batch_status = 'READY' WHERE batch_status like 'ERROR';
This should cause the folder pickup service to restart processing the batch instances from the last execute module.
This has not been tested for all cases. We recommend testing this on a single batch instance before running the query on all batch instances in an ERROR state.