To reference cached data from one data flow activity as the source for another data flow activity, you can follow these steps:
- In the first data flow activity, add a sink transformation and select "Cache" as the sink type.
- In the second data flow activity, add a source transformation and select "Cached" as the source type.
- In the "Cached" source transformation, select the first data flow activity as the source data flow.
- Map the columns from the cached data to the input of the second data flow activity.
This will allow you to use the output of the first data flow activity as the input for the second data flow activity without persisting the data in a data store.
References: