How to create an Asynchronous Script Component in SSIS?

眉间皱痕 提交于 2019-12-02 08:53:41

问题


I might be blind, but I don't see how to CREATE the script component. I'm not asking why do an asynchronous, how to work with it, etc. I just want to know how to add it to my package, or how to transform an already existing component into an asynchronous one!

I'm using VS2008 with MSSQL 2008 R2.


回答1:


I found how :

  1. Go in the Script Transformation Editor
  2. Select "Inputs and Outputs" from the leftmost part of the screen.
  3. Select your Output.
  4. Set "SynchronousInputID" to "None".

Thanks to this site.




回答2:


Creating an Asynchronous Transformation with the Script Component

First bullet point under "Configuring Inputs, Outputs, and Output Columns"

Set the SynchronousInputID property of each output to zero to indicate that the output does not simply pass through data from an upstream component or transform it in place in the existing rows and columns. It is this setting that makes the outputs asynchronous to the input.



来源:https://stackoverflow.com/questions/7502084/how-to-create-an-asynchronous-script-component-in-ssis

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!