我想每个月通过 Azure 数据工厂从网站中提取数据。有没有办法通过动态内容功能更改每个月的 URL 与月份名称?
{{静态 URL}}/TestFile_October_2020.zip
{{静态 URL}}/TestFile_November_2019.zip
{{静态 URL}}/TestFile_December_2020.zip
我想每个月通过 Azure 数据工厂从网站中提取数据。有没有办法通过动态内容功能更改每个月的 URL 与月份名称?
{{静态 URL}}/TestFile_October_2020.zip
{{静态 URL}}/TestFile_November_2019.zip
{{静态 URL}}/TestFile_December_2020.zip
我们可以在 ADF 管道中定义一个数组类型变量,如下
[{"id": 1,"Value": "January"},{"id": 2,"Value": "February"},{"id": 3,"Value": "March"},{"id": 4,"Value": "April"},{"id": 5,"Value": "May"},{"id": 6,"Value": "June"},{"id":7,"Value": "July"},{"id": 8,"Value": "August"},{"id": 9,"Value": "September"},{"id": 10,"Value": "October"},{"id": 11,"Value": "November"},{"id": 12,"Value":"December"}]
Array
变量。@item().value
在变量中MonthString
@equals(item().id,int(subString(utcnow(),5,2)))
来选择当前月份的值。这里我们需要使用int()
函数将字符串类型转换为int类型。@concat(variables('BasicURL'),concat('/TestFile_',variables('MonthString')),concat('_',substring(utcnow(),0,4),'.zip'))
来构建查询字符串。如果你有 Azure SQL,你可以创建一个表来存储这个数组并使用查找活动来查找值,这会更容易。
您可以使用格式为“MMMM”的函数“formatDateTime”在动态内容中获取完整的月份名称。您可以参考相同的文档。