I have inherited some SSIS Packages written against SQL Server 2008. Among these is one offending package that is fetching files from a small device via FTP. It is creating a new connection for each file. Which overwhelms the device quickly.
In efforts to fix this I found multiple references on using the RetainSameConnection
property. However I have gone through the properties and it is not available to set. I have not been able to find how to via searching either. Or if it is available in SQLServer 2008
So my question is simply, How can I get at that property? Or what version does it become available if not in SQL Server 2008?