How to Solve SSIS Error Code 0xC020801C/0xC004700C/0xC0047017






4.88/5 (16 votes)
This post shows you how to solve SSIS Error Code 0xC020801C/0xC004700C/0xC0047017
Background
SSIS is one of the best ETL tools available in the market and it can load a large amount of data from any heterogeneous data source whether structured, unstructured, application, cloud or real-time data. This post discusses the solution of a common problem that usually arises while importing data from Excel data source.
Problem
Beginners, while doing the extract, face some weird issues, which seem very fuzzy to solve at first. Such a problem is while doing extract from Excel data source. After running, the application shows error:
And the extraction failed.
The reason for this run-time error is that Excel does not have a 64-bit driver which is selected by default in SSIS running on 64bit OS. So, the solution is also hidden behind the reason, change the driver from default and you are good to go. Steps to solve the issue are given below.
Step 1
Navigate to Project-> [PROJECT_NAME] Properties.
Step 2
Navigate to “Debugging” option from left panel and from Right panel, change Run64BitRuntime
value to false
.
That’s it!! Keep extracting!!