Hi,
I have a solution with 20 packages. Target Database is same for all the packages, only target tables are different. All are working fine.
Now,as part of a new requirement,I have to change some logic in one of the packages.I have to create few 'Global Temp Tables' on the fly and populate some data into it and use those tables for update and delete in both control and data flow.
Since I am creating and using Global tables on the fly, I have to set up 'Delay Validation = True' for the package and the DFTs.
Then, most important thing is, I have to set up 'Retain Same Connection = True' for the 'Target database' connection because only then, I assume,the package will not throw errors like 'Tables are not available'.
My doubt is, if I change the Retain Same Connection = True, will it create any issue for the other packages, as all other packages are using the same connection manager.
I am using SSIS 2012.
Thanks for your help!