How do you call a Stored Procedure in SSIS?

后端 未结 2 559
独厮守ぢ
独厮守ぢ 2021-02-05 06:52

I am trying to create an SSIS package that queries data from a table, and calls a stored procedure in another database with each row.

In my old DTS package, I was doing

2条回答
  •  醉话见心
    2021-02-05 07:14

    In the Data Flow, the OLE DB Command can be used to execute a SQL statement for each row in a dataflow - (MSDN documentation)

    Alternatively, you can store the source result set in a variable of data type object and use a Foreach Loop container in the Control Flow (example here).

提交回复
热议问题