Reputation: 15
Is it possible to create a statically named derived column using a column value of the row from schema drift/dynamic input dataset in Azure data factory dataflow? We can use column pattern matching but it doesn't seem to let us use a static named derived column. We need this derived column name to be able to use in the next Alter Row to decide if delete/upsert to be made.
Upvotes: 0
Views: 256
Reputation: 7156
Using Derived column transformation, you can create a new column or you can update the existing field. To add a new column in the derived column transformation,
This will create the static new column name which can be used for further transformations.
Refer, MS document on Derived column transformation in mapping data flows
Upvotes: 0