Pregunta

anybody aware of "Close Connection on completion" option in DTS.

I am searching for the equivalent option for OLEDBDestinationTask in SSIS.

enter image description here

¿Fue útil?

Solución

To answer your question directly: this is done automatically.

The SSIS Connection Manager behaves differently to the way the DTS Connection works. The Connection Managers maintain a pool of connections. Each task that utilises the Connection Manager will get its own connection to the data source - in comparison to DTS, where if the same connection object is used, the same physical connection will be maintained throughout the package.

Apart from that, you can actually make the SSIS Connection Manager behave like a DTS Connection by setting RetainSameConnection=True

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top