使用复杂视图的 SQL 查询填充 Azure 数据工厂

huangapple go评论56阅读模式
英文:

Populate Azure Data Factory with SQL Query that has complex views

问题

在Azure数据工厂中,通过使用“复制活动”块,您可以从包括表的查询中获取数据。
有时表可以被视为数据集,但视图呢?

我可以在我的“复制活动”中包括查询,比如

SELECT * FROM l2.View_table
或者

select * from l2.view_table vt
INNER JOIN l2.tableA ta on ta.id = vt.id

英文:

<br>
In Azure Data Factory, by using the block "Copy Activity",<br>you can get data from queries that include a table.<br>
Sometimes a table can be seen as a Dataset but what about views ?

can I include in my Copy Activity Queries like

SELECT * FROM l2.View_table

or

select * from l2.view_table vt
INNER JOIN l2.tableA ta on ta.id = vt.id 

?

答案1

得分: 0

可以使用视图或查询作为您的数据源。

在数据源选项中设置“使用查询”,然后粘贴您的查询。

英文:

Yes, you can use a view or a query as your source.

Set "use query" to query in source options, and paste in your query.
使用复杂视图的 SQL 查询填充 Azure 数据工厂

huangapple
  • 本文由 发表于 2023年2月23日 22:55:53
  • 转载请务必保留本文链接:https://go.coder-hub.com/75546505.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定