Kavin Israel
Kavin Israel

Reputation: 105

The AcquireConnection method call to the connection manager failed with error code 0xC0202009

Error message:

[OLE DB Source [1]] Error: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager "REMEDY" failed with error code 0xC0202009. There may be error messages posted before this with more information on why the AcquireConnection method call failed.[SSIS.Pipeline] Error: component "OLE DB Source" (1) failed validation and returned error code 0xC020801C.


I tried the below troubleshooting,

  1. changed the transactionOption to NotSupported ( For control flow and DFT properties both)
  2. Have set the delayValidation to TRUE ( DFT properties )
  3. Have set the => Project -> Properties -> Debugging -> Run64BitRunTime = False
  4. Tried executing the package via DTEXEC utility
  5. Package protection level is EncryptSensitiveWithPassword
  6. Have set the 32bit runtime execution at SSIS JOB

But still, receive the same error. Requesting assistance.

Upvotes: 3

Views: 9693

Answers (2)

ianlee50
ianlee50

Reputation: 11

We were getting -

SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER The AquireConnection method call to the connection manager failed with error code 0xc0202009

and

SSIS Error Code DTS_E_OLEDBERROR 0x80004005 "[DBNETLIB][ConnectionOpen (SECCreateCredentials()).]SSL Security error."

We had this problem twice on old jobs, the Provider in the Connection Manager had either possibly changed from "SQL Server Native Client 11.0" to "Microsoft OLE DB Provider for SQL Server" or just become invalid through an update?

On one occasion we were able to change this (to Client 11.0 option) in the package from the dropdown, the second time it happened it was running in the Integration Services Catalogs so we had to edit the Connection String on the Connection Managers (from Configure option) and changed the Provider part of the string from "Provider=SQLOLEDB.1" to "Provider=SQLNCLI11.1" which resolved the issue that time

Upvotes: 0

Kavin Israel
Kavin Israel

Reputation: 105

I have upgraded to SSDT 2012 and utilized Oracle Attunity driver to resolve this issue. Thanks digital.aaron & billinkc for your intreset on my question

Upvotes: 0

Related Questions