How to change the status of the record stuck "in progress" state in the probe_to_pattern_log tableIssue Whenever the migration from the probe to pattern runs into some issue, some records in the probe_to_pattern_log table might end up staying stuck with status as "In Progress". There is no way to change this status. If we need to run the migration script again then this will stop it from running. You will get a message saying “Migration is already in progress".ReleaseAll release when running Probes to Pattern migration script.CauseThis field is read-only and needs to be changed using a script.ResolutionThe easiest way to change this status so that migration can be run again is to use the following script to change the status from "In Progress" to "Failed": var gr = new GlideRecord(“probe_to_pattern_log”);gr.addEncodedQuery(“status=In Progress”);gr.query();while(gr.next()){gr.status = “Failed”;gr.update();}