【发布时间】:2020-02-14 04:02:55
【问题描述】:
在 SSIS 包中,我有一个“Power Query”源步骤,该步骤产生 3 列,即 Region、Facility 和 Weekly_Amount。我有兴趣使用 Power Query 的 Weekly_Amount 列更新 SQL 表,其中 Region 和 Facility 与 SQL 表记录相关。示例:
Update {Some table}
set {SQL Table}.Weekly_Amount = {PowerQuery}.Weekly_Amount
where {SQL Table}.Region = {PowerQuery}.Region
and {SQL Table}.Facility = {PowerQuery}.Facility
我需要使用什么 SSIS 步骤才能完成上述操作?我总是可以包含一个 T-Sql 更新语句。
谢谢。
【问题讨论】:
标签: sql sql-server ssis etl powerquery