I have a SSIS package which is executed from application. Can the same package be called simultaneously?
Executing the multiple instances of same package simultaneously through application?
2.5k Views Asked by azim At
2
There are 2 best solutions below
0

Yes, That could be done. You can use Packages like classes and call multiple instances simultaneously in a parent package providing it with different set of parameters using a sequence container and call multiple instances of same package using Execute package task using same package connection.
Maximum number of tasks that could run simultaneously is dependent on number of cores in your machine. Number of concurrent tasks= Number of cores +2
Yes, you can run package simultaneously, but keep in mind, this can sometimes lead to a deadlock on processed data (depending on the flow).
Package Property
MaxConcurrentExecutables
defines how many can remain running at once. The default is -1 and then it depends on the available cores (threads), but you can change it to whatever you want.