Hi,
I am developing an SSIS 2008 project.
The project is to copy data from 7 tables on one server to 7 tables on another.
Each table query shares the same parameters.
What is my best option in 2008 development? Should I create a separate package for each table data copy, and pass variable from master package to each of those packages?
Or should I contain all in a single package?
I want to be able to run the table data queries simultaneously.
Thanks.