Thanks for the question and using MS Q&A platform.
According to what you need, after the Dataflow (where the variable data is sent to the sink), you can use a lookup on the sink dataset to retrieve that variable's value in the pipeline. You can use sink cache
for the second sink.
- Start by using a
conditional split
on your input data. This will split your data into two branches, each containing the same information.
- Assign one branch to the
sink
and set up the cache as shown below.
- In the original
sink
, transfer your data to target and the second sink is used forsink cache
. Give the sink write order for the dataflow.
- In the dataflow activity, set the logging to None and uncheck the First row only.
- In the dataflow activity output, you can see the second sink output array.
- To access the above output array, use the below dynamic content in a set variable activity after the dataflow activity in the pipeline.
Later, you can use this array to get the data for your variable as per your requirement.
Hope this helps. Do let us know if you any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.