I have a SSIS package runs fine in visual studio but will not run deployed as a job in SSIDB.
The first error message was
Data Flow Task:Error: The binary code for the script is not found. Please open the script in the designer by clicking Edit Script button and make sure it builds successfully.
Researching this pointed to an issue with the package version and SSISDB version. I was deploying the job as 2017 on an SSIDB that was 2019.
I downloaded vs2019 and updated the package version to 2019. Now I get an login failed error.
RentalExchangeUpload:Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80040E4D. An OLE DB record is available. Source: "Microsoft SQL Server Native Client 11.0" Hresult: 0x80040E4D Description: "Login failed for user domain\user.
The user and password are stored in the package parameters. All other SSIS packages deployed as 2017 with the same connection string are running find from the SSISDB.
Not sure what else to try.