Ssis6 Upd
A scheduled SSIS package fails with:
"The version number in the package is not compatible with the version of the SSIS runtime installed. Expected version 6."
Fix: Update the SQL Server Integration Services service via SQL Server setup or Cumulative Update. ssis6 upd
Specific components like the CDC (Change Data Capture) task, Analysis Services processing task, or the Azure Feature Pack for SSIS are prone to bugs in base builds. Updates repair these.
Symptom:
Package runs fine in SSDT (VS 2015), fails in production SQL Agent (SQL 2016) with: A scheduled SSIS package fails with:
The package format version is not valid. (SSIS 2016 expected version 6, found 5)
Root cause:
ssis6 upd missing in .dtsx because developer copied file from old server without upgrade.
Fix:
dtutil /file "package.dtsx" /upgrade /destfile "package_v6.dtsx"
Resulting file contained ssis6 upd + version 6 → deployment succeeded.
During execution of an upgraded package, verbose logging shows: "The version number in the package is not
Information: The package was upgraded from version 5 to version 6 (ssis6 upd).





