Create a flow which CRUD triggers on every update OR with scheduled triggers create unnecessary sys_flow_plan_context_binding recordsDescriptionsys_flow_plan_context_binding records are not needed for: every update triggersscheduled triggers run if not currently running if the flow is completeSteps to Reproduce Create a flow which CRUD triggers on every update OR with scheduled triggersTrigger the flowExpected: records in sys_flow_plan_context_binding for the flow executions are not createdActual: records in sys_flow_plan_context_binding are createdNote there is no functional defect for the customer aside from many rows being created in sys_flow_plan_context_bindingWorkaroundInstall attached sysauto_script_60a1d19b45c81510f87710eb32298dc4.xml This will remove any sys_flow_plan_context_binding records for every update triggersrun if not currently running if the flow is complete As it only operates on records created in the last 24 hours, to avoid a full table scan, you may consider an index on sys_created_on Another option is to install a general table cleaner on sys_flow_plan_context_binding, for example clean up records created more than 6 months ago. Note that this could have a negative functional impact for the following Record Updated trigger types: Once, For each unique change, Only if not currently running. Example: they might trigger again unexpectedly if updated and their binding record has been deleted Related Problem: PRB1567812