dynamic-expression

Convert Row Count to INT in Azure Data Factory

我们两清 提交于 2021-01-29 13:47:21
问题 I am trying to use a Lookup Activity to return a row count. I am able to do this, but once I do, I would like to run an If Statement against it and if the count returns more than 20MIL in rows, I want to execute an additional pipeline for further table manipulation. The issue, however, is that I can not compare the returned value to a static integer. Below is the current Dynamic Expression I have for this If Statement: @greater(int(activity('COUNT_RL_WK_GRBY_LOOKUP').output),20000000) and