Dataflow :https://www.youtube.com/watch?v=kHzLDyUHB3E
https://learn.microsoft.com/en-us/azure/data-factory/data-flow-filter
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm fairly new to Azure Data Factory and need help with a pipeline I'm building. My goal is to read data from a CSV file stored in an Amazon S3 bucket, filter out records where the Status
column is 'active'
, and then copy the filtered data into a SQL Server sink. I’m using a Lookup activity to fetch the data and passing its output (@activity('Lookup1').output.value
) to a Filter activity. The filter condition I’ve set is @equals(toLower(item().Status), 'active')
. This gives me the filtered records, but I’m unsure how to pass this filtered output into the Copy activity so that only the active records are written to the SQL Server. Any guidance on how to achieve this would be greatly appreciated.