SSIS:将记录集传递到存储过程中
我将 SSIS 与 SQL Server 2005 一起使用,我想将数据集作为参数传递到存储过程中。在存储过程中,我必须处理记录并将其插入到某个目标表中。 在SSIS中有没有直接的方法来做到这一点(将数据集作为参数部分传递)? 或者我是否必须将表记录转换为 XML,然后将其作为参数传递..
I'm using SSIS with SQL Server 2005, I want to pass a data set as a parameter into a sproc. Inside the sproc, I have to process the records and insert into some destination table.
Is there a direct way to do it in SSIS(passing data set as a parameter part)?
Or do I've to convert the table records into XML and then pass it as parameters..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有什么方法可以将整个数据集传递到存储过程中(除了转换为 xml 之外)。
另一种方法是将逻辑从存储过程中移出,并设置 SSIS 来管理目标逻辑。
I am not aware of any way to pass the entire data set into a stored proc (other than by converting to xml).
The alternative is to move your logic from your stored proc and set SSIS up to manage the destination logic.