Issue
Sometimes it might be necessary to verify all of the workflow steps which have taken place in Stage 2 for all container mappings. This article explains how that can be done.
Solution
The following query can be run on the Archive Shuttle Directory Database to obtain the information:select wp.WorkflowPolicyName, wseg.WorkflowPolicyId, ws.ContainerMappingId, wseg.SequenceOrder, c.Name, c.CommandId,tes.Name from WorkflowStatus wsLEFT JOIN WorkflowSequence wseg ON ws.WorkflowSequenceId = wseg.WorkflowSequenceIdLEFT JOIN Command c ON wseg.CommandId = c.CommandIdLEFT JOIN WorkflowPolicy wp on wseg.WorkflowPolicyId = wp.WorkflowPolicyIdLEFT JOINTaskExecutionStatus tes on ws.TaskExecutionStatusId = tes.TaskExecutionStatusIdORDER BY wseg.WorkflowPolicyId, ws.ContainerMappingId,wseg.SequenceOrder asc