Ssis-913 Jun 2026
: When you encounter SSIS-913, review the detailed error message provided in the SSIS error output or execution logs. This message often contains critical information about the nature of the problem.
| Fix | Description | |-----|-------------| | | Keeps the same physical connection open for the lifetime of the package, preventing reconnection failures. | | Force Transaction Isolation Level | In the Connection Manager → Properties , set TransactionIsolationLevel = ReadCommitted or Snapshot to avoid deadlocks that surface as OLE DB errors. | | Add a “Fail‑over” Connection Manager | Duplicate the original connection, change the server name to a secondary replica, and use an Expression on the component’s Connection property to switch on failure. | | Use “Table or view – fast load” with Check Constraints disabled | Reduces the amount of work the engine does per row, lowering the chance of timeout. | | Upgrade the package to the 2019/2022 SSIS runtime | Newer runtimes have better error‑handling and improved driver compatibility. | SSIS-913
: If "SSIS-913" is an error, then logs and error messages associated with it would provide critical information. Typically, SSIS package execution logs and Windows Event Viewer logs can provide more details. : When you encounter SSIS-913, review the detailed