Connection Error While Running Simple ETL Process With Excel using SSIS





0/5 (0 vote)
SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER. The AcquireConnection method call to the connection manager failed with error code 0xC0209303.
Introduction
Running Simple ETL process with Excel using SSIS in Visual Studio, Package throws run time error like connection manager failed with error code 0xC0209303.
What Caused It?
This issue is basically caused by mismatch Visual Studio RUN TIME mode mismatch. If your project is set specifies whether the project should start 64 bit SSIS runtime.
How To Fix It?
In order to fix this issue, please follow the below steps:
- Right click on your project, and choose properties
- The below screen will be visible:
- Click on Configuration properties-> Debugging
- Set
Run64BitRuntime
property tofalse
. - Click on Apply button and re run your package.
Cheers!!