英文:
Is there a way to see which table is being run in Azure Data Factory?
问题
我有一个Azure数据工厂管道,它查找了一些模式并将它们的数据复制到新的数据库中。我可以看到,每次运行时它复制的每个表都在日志中有一个我可以看到的实例。
示例:
我可以点击这些实例以获取更多信息,尽管它并没有告诉我确切地正在运行哪个表。是否有一种方法可以将实例映射到特定的表格?
英文:
I've got an Azure Data Factory pipeline that does a lookup of a couple of schemas and copies their data over to a new database. I can see that- whenever I go to run it- each table that it copies, has an instance I can see in the logs of the run.
Example:
I can click on these and get more information, although it doesn't tell me, exactly, which table it's running. Is there a way I can map an instance to a specific table?
答案1
得分: 1
-
在源数据集中选择了查询选项,并在查询文本框中输入查询,如下图所示。
-
当运行管道时,点击日志中复制活动的输入。
-
在SQLReaderQuery中,您可以找到该活动的源表名称。
英文:
-
Query option in source dataset is selected and query is given in query textbox as in below image.
-
When pipeline is run, click on the input of the copy activity in the log.
-
In SQLReaderQuery, you can find the source table name of that activity.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论