Clean up Script to delete an orphan record (single) from a tableSummaryNavigate to the "script-background" under the "System Definition" on the instance: Select the Scope as "Global"Get the respective "sys_id" for the orphan record which you wanted to clean upRun the below script from the background..!! var now_GR = new GlideRecord('incident');//to delete one recordif(now_GR.get('<sys_id>'))now_GR.deleteRecord(); ----- This should delete the Orphan record from the table respectively.ReleaseAll