SSIS - 将值从 T-Sql 任务传递到数据流任务
我希望从 T-SQL 任务输出标量值(从...中选择 max(ID)),并使用它从另一台服务器提取数据。我确信我可以编写一个脚本任务来将该值检索到变量中并在数据流任务中使用它,但似乎应该有一种更简单的方法。
有什么建议吗?
更新:
除了billinkc的答案之外,我发现这个教程非常有帮助:
http://sqlfool.com/2009/08/getting-started-with-variables-in-ssis/
I am looking to output a scalar value from a T-SQL task (select max(ID) from...) and use that to pull data from another server. I am sure I can write a script task to retrieve that value into a variable and use it in the data flow task, but it seems that there should be a simpler way.
Any suggestions?
Update:
In addition to billinkc's answer, I found this tutorial which was very helpful:
http://sqlfool.com/2009/08/getting-started-with-variables-in-ssis/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
像这样对查询进行参数化,以使用从执行 SQL 任务中保存的值。
在此处设置参数。
Parameterize your query like so to use the value you saved off from the Execute SQL task.
Set parameters here.