Use dynamic value as table name of a table storage in Azure Data Factory

我的未来我决定 提交于 2020-06-17 14:19:05

问题


I have an ADF pipeline that uses copy data activity for copying data from blob storage to table storage. This pipeline runs on a trigger once every day. I have provided a table name in table storage data set as 'Table1'.

Instead of providing a hard coded table name value (Table1), is it possible to provide a dynamic value as table name in the table storage such that RUN ID of pipeline run is used as the table name in the table storage and copy data from blob to that table in table storage?


回答1:


You could set a dynamic value as table name.

For example, you can add parameter to the table storage dataset:

Then you can set the pipeline parameter to specify the table name:

But we can not provide the RUN ID of pipeline run as the table name in the table storage and copy data from blob to that table in table storage.

Hope this helps.



来源:https://stackoverflow.com/questions/62056682/use-dynamic-value-as-table-name-of-a-table-storage-in-azure-data-factory

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!