SSIS: Is It possible to have modularity and avoid replication inside a single Data Flow?

删除回忆录丶 提交于 2019-12-24 19:33:49

问题


How I can do something like programming language functions/methods inside a Data Flow? I have data flows that have many steps sequence replication and I don't want that.

Using programming language as example, what I want:

task1;
task2;
insert();
....
task13;
task14;
insert();
....
task60;
task61;
insert();

//insert implementation
insert()
{
   logtask;
   insertInDatabaseAtask;
   insertInDatabaseBtask;
   audittask;
}

I know that break my package flow in more data flows is a possibility, but in certain cases, I prefer to do some modularity like methods/functions of programming language inside the same data flow.

Is it possible? How I can do that?

Best Regards, Luis

来源:https://stackoverflow.com/questions/59139888/ssis-is-it-possible-to-have-modularity-and-avoid-replication-inside-a-single-da

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