SSIS Data Flow: Join the auxiliar flow to the main flow

ⅰ亾dé卋堺 提交于 2020-01-25 09:52:46

问题


The 'conditional split task' is like a If/Else behavior of programming language. But I don't want only these split behavior. I want to unite a recent opened flow( little scope ) to the main flow;

Using programming language as a example, what I want is this:

//this is the main flow
task1;
task2;
task3;
If( condition )
{
   //Now I have the auxiliar flow possibility
   taskAuxiliar1;
   taskAuxiliar2;
   taskAuxiliar3;
   taskAuxiliar4;
}
//Now a single main flow again** ( I want do this )
task4;
task5;

What I can do for resolve this without lose performance inside the data flow?? I don't know if merge/join tasks are good for that, because I read these tasks are bad for performance. I want a auxiliar flow with a little scope to do few things, and after that unite again to the main flow.

Best Regards, Luis

来源:https://stackoverflow.com/questions/59138319/ssis-data-flow-join-the-auxiliar-flow-to-the-main-flow

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