如何在不使用任何转换的情况下从 ssis 中的执行 sql 任务插入、更新记录?

How to insert,update records from execute sql task in ssis without using any transformation?

我们有用于更新的 oledb 命令转换,在 SSIS 中删除 pupose 它工作正常但是当我们有大量数据时它会降低性能所以我们可以在控制流窗格中的执行 sql 任务中编写查询在 ssis 中插入,更新记录我知道这行得通,但我不知道该怎么做,请大家帮帮我。

You can achieve this in two ways using execute sql task.
1.Insert data into global temporary table,then use execute sql task update your target table with join temporary table and can also insert data to your target table using temporary table.
2. Insert data into in dummy table(database) then update and insert target table using this dummy table. You can use merge statement for insert and update.