我需要在 ADF 中添加动态内容。以这样的方式,它需要获取上个月的日期如下的甲酸盐。
结果:2018-12.csv.zip
如果您将日期设置为 28 日,然后减去 30 天,这应该可以让您从任何日期进入上个月。 然后简单地格式化为 yyyy-MM
,例如
@concat(formatDateTime(adddays(formatDateTime(utcnow(), 'yyyy-MM-28'),-30),'yyyy-MM'),'.csv.zip')
通过使用 https://learn.microsoft.com/en-us/azure/data-factory/control-flow-expression-language-functions 来完成。
可能的解决方案:我建议您在这里使用 3 个参数。 此解决方案使用 trigger().startTime,但您也可以使用 utcnow()。
注意:adddays(trigger().startTime,-31,'MM') 将返回 12 作为月份,因为该月是 31 天前。如果您的触发器在当月 5 日或当月的第一天,则可以使用 -2。
processYear = @formatDateTime(adddays(trigger().startTime,-31), 'yyyy')
processMonth = @formatDateTime(adddays(trigger().startTime,-31), 'MM')
result = @concat(pipeline().parameters.processYear,'-',pipeline().parameters.processMonth,'.csv.zip').
希望这有帮助。
@concat(formatDateTime(subtractFromTime(utcNow(),1,'Month'), 'yyyy-MM'), '.csv.zip')
如果我知道日期,但我每天都在运行数据工厂,则上述给定的情况有效。所以下面效果更好。
@concat(substring(string(if(equals(int(formatDateTime(utcnow(
), 'MM')),01), sub(int(formatDateTime(utcnow(), 'yyyyMM')),89),sub(int(formatDateTime(utcnow(),'yyyyMM')),1))),0,4),'-',substring(string(if(equals(int(formatDateTime(utcnow(), 'MM')),01), sub(int(formatDateTime(utcnow(), 'yyyyMM')),89),sub(int(formatDateTime(utcnow(),'yyyyMM')),1))),4,2),'.csv.zip')任何更改都值得赞赏。