I would like to combine the results of two queries (broadlog and tracking log schemas) to export into a file. They have same additional data columns.
There is no common records between them. How can this be done ?
I tried using a union, but it results only in records of the primary set while checking the transition data. But the output transition's count shows a higher number which is the expected result.
For Example. Broadlog query results in 2 records. I add additional data as @expr = 1. Tracking log query returns 3 records and I add additional data as @expr = 2.
In the Union activity the primary set is Broadlog Query. Now in the union If I choose all shared columns or a selection of columns(with reconciliation based on @expr),The output transition has a count of 5 records. But it results only in the records of the Broadlog schema(2 records) while opening the transition and seeing the records.
Is Union the right approach ? Or is there any other approach ? Or is this not feasible in Campaign ?