I have created an SSIS package to transfer data from MySQL to PostgreSQL, and it is working fine on my local system. However, when I try to deploy the package to a SQL Server and schedule a job, it fails to establish a connection with the PostgreSQL server. I have installed all the required drivers on the SQL Server where I am trying to deploy the package.
Please help me identify and other potential solutions to resolve the connection problem.
error-
Executed as user: ERQCINRDB08\SSISUser. Microsoft (R) SQL Server Execute Package Utility Version 14.0.1000.169 for 32-bit Copyright (C) 2017 Microsoft. All rights reserved.
Started: 1:22:27 PM
Error: 2023-07-20 13:22:27.85
Code: 0xC0016016
Source: MySql_To_PG_file
Description: Failed to decrypt protected XML node "DTS:Password" with error 0x8009000B "Key not valid for use in specified state.". You may not be authorized to access this information. This error occurs when there is a cryptographic error. Verify that the correct key is available. End Error
Error: 2023-07-20 13:22:27.91
Code: 0xC0014020
Source: MySql_To_PG_file Connection manager "10.107.3.6.demo.postgres"
Description: An ODBC error -1 has occurred. End Error
Error: 2023-07-20 13:22:27.91
Code: 0xC0014009
Source: MySql_To_PG_file Connection manager "10.107.3.6.demo.postgres"
Description: There was an error trying to establish an Open Database Connectivity (ODBC) connection with the database server. End Error
Error: 2023-07-20 13:22:27.91
Code: 0x0000020F
Source: Data Flow Task 1 ODBC Destination [40]
Description: The AcquireConnection method call to the connection manager 10.107.3.6.demo.postgres failed with error code 0xC0014009. There may be error messages posted before this with more information on why the AcquireConnection method call failed. End Error
Error: 2023-07-20 13:22:27.91
Code: 0xC0047017
Source: Data Flow Task 1 SSIS.Pipeline
Description: ODBC Destination failed validation and returned error code 0x80004005. End Error
Error: 2023-07-20 13:22:27.91
Code: 0xC004700C
Source: Data Flow Task 1 SSIS.Pipeline
Description: One or more component failed validation. End Error
Error: 2023-07-20 13:22:27.91
Code: 0xC0024107
Source: Data Flow Task 1
Description: There were errors during task validation. End Error
DTExec: The package execution returned DTSER_FAILURE (1). Started: 1:22:27 PM Finished: 1:22:27 PM Elapsed: 0.156 seconds. The package execution failed. The step failed.
I want to know complete deployment process for postgrs ssis package.