Share via

alter row - true()

arkiboys 9,711 Reputation points
2022-04-18T07:12:07.93+00:00

What does true() do when setting the alter row transformation to :
delete if --> true()
upsert if --> true()

Thank you

Azure Data Factory
Azure Data Factory

An Azure service for ingesting, preparing, and transforming data at scale.


Answer accepted by question author

MarkKromer-MSFT 5,231 Reputation points Microsoft Employee Moderator
2022-04-18T16:35:29.07+00:00

That rule will upsert all rows and will only delete rows that have a value in field1, field2 and field3. The actual syntax would look like this:

!isNull(field1) && !isNull(field2) && !isNull(field3)

Was this answer helpful?


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.