I have had a ADF pipeline working for the past year that triggered every day that basically started my IR then ran a SSIS package then shutdown the IR. Recently I needed to update the SSIS with some new code. I am currently using azure blob storage for the location of the SSIS package and assumed just copying the updated package would work. Of course it didn't. After working through multiple issues I am now gectting the following error when running the package
{
"OperationErrorMessages": "1/22/2024 11:30:22 PM +00:00 : Load ECNL:Error: Microsoft.SqlServer.Dts.Pipeline.ComponentVersionMismatchException: The version of Script Component is not compatible with this version of the DataFlow. [[The version or pipeline version or both for the specified component is higher than the current version. This package was probably created on a new version of DTS or the component than is installed on the current PC.]]\r\n at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostCheckAndPerformUpgrade(IDTSManagedComponentWrapper100 wrapper, Int32 lPipelineVersion)\n1/22/2024 11:30:22 PM +00:00 : Load ECNL:Error: The component metadata for \"Script Component\" could not be upgraded to the newer version of the component. The PerformUpgrade method failed.\r\n\n1/22/2024 11:30:22 PM +00:00 : Load GotSport:Error: Microsoft.SqlServer.Dts.Pipeline.ComponentVersionMismatchException: The version of Script Component is not compatible with this version of the DataFlow. [[The version or pipeline version or both for the specified component is higher than the current version. This package was probably created on a new version of DTS or the component than is installed on the current PC.]]\r\n at Microsoft.SqlServer.Dts.Pipeline.ManagedComponentHost.HostCheckAndPerformUpgrade(IDTSManagedComponentWrapper100 wrapper, Int32 lPipelineVersion)\n",
"effectiveIntegrationRuntime": "SSIS-V2 (East US)",
"executionDuration": 16,
"durationInQueue": {
"integrationRuntimeQueue": 0
}
}
My assumption is that since I have updated my SSDT on my local machine that potentially the IR needed to be updated. I could not find a way to update the IR so I went ahead and built a new one. That still didnt not fix the poroblem. Any help would be apprecciated.