문제

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

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top