To all the SSIS gurus,
I have a situation where I have multiple source tables, I need to populate the destination tables that have the same schema as the source ones. I dont want to do the repetitive task of creating a Dataflow for each source-destination load.
I want to create one custom dataflow component and loop through all my source tables and provide destination tables dynamically.
Is there a way to do that? Any custom data flow component out there?
Your ideas are greatly appreciated.
Regards,
ssiscoder wrote: To all the SSIS gurus,
I have a situation where I have multiple source tables, I need to populate the destination tables that have the same schema as the source ones. I dont want to do the repetitive task of creating a Dataflow for each source-destination load.
I want to create one custom dataflow component and loop through all my source tables and provide destination tables dynamically.
Is there a way to do that? Any custom data flow component out there?
Your ideas are greatly appreciated.
Regards,
No you can't do this currently. Well, not with the out-of0the-box components anyway.
What you CAN do is build a package programatically in dotnet using the SSIS API. That dotnet code can be called from any place that can execute dotnet code. One of those places happens to be a SSIS package.
HTH.
-Jamie
|||
Thanks for the info Jamie!
Can you please post some articles here of how to go about doing the data flow part programitically?
Regards,
|||ssiscoder wrote: Thanks for the info Jamie!
Can you please post some articles here of how to go about doing the data flow part programitically?
Regards,
I can do better than that. here's a sample:
http://msdn2.microsoft.com/en-us/library/ms161541.aspx
-Jamie
|||
This might help as well: http://msdn2.microsoft.com/en-us/library/ms345167.aspx
-Jamie
No comments:
Post a Comment