Synchronization editor: Preparing report stuck at the end

I want to see sync log but it is always stuck at the end of 212 pages.

Using 25% of CPU and after some hours no result.

This happens every time with a particular workflow

suggestions?

Parents Reply Children
  • What version of OneIM is it?

    The 3000 lines are just the DPRJournalMessages (3000 are many for this type as well but not a problem for the report).

    I assume you do have many rows in DPRJournalProperty.

    How many rows do you get with this query?

    Declare @DPRJournal as Varchar(38)
    Set @DPRJournal='<Your UID_DPRJournal>'
    
    SELECT j.CreationTime
    	,j.ProjectionContext
    	,j.ProjectionConfigDisplay
    	,j.SystemVariableSetDisplay
    	,o.ObjectDisplay
    	,o.ObjectState
    	,p.PropertyName
    	,p.NewValueShort
    FROM DPRJournal j
    JOIN DPRJournalObject o on j.UID_DPRJournal = o.UID_DPRJournal
    LEFT OUTER JOIN DPRJournalProperty p on o.UID_DPRJournalObject = p.UID_DPRJournalObject
    WHERE j.UID_DPRJournal = @DPRJournal
    Order By O.SequenceNumber