Hi,
I created the SSIS package with sequential container by placing 10 execute sql tasks in it. There is no connection for these execute sql tasks to achieve parallel execution and I set the maxconcurrentexecutable to 10.
With above settings package is doing its task parallel without any problem. we are planning to deploy on customer server which has rich hardware. Now my question is,
how should I make sure that rich hardware can be used fully to execute my package. I mean,
1) if customer server, supports 20 concurrent processes, how should I keep 20 executable sql task in my package dynamically?
2) if customer server, support only 5 concurrent process, how should I keep only 5 executable sql tasks in my package dynamically?
3) I want, the number of maxconcurrentexecutable should be configurable, and those many executables needs to run parallel in my package?
thanks