Hi, I am developing a SSIS package in which i will have reading data from excel file(.xls) as my first component. I am well aware that this is just a simple one two steps but i am getting errors "Microsoft Jet Database Engine", "External table is not in the expected format". I have tried various ways to so far to no avail. Below is my excel connection manager setup:
Provider=Microsoft.JET.OLEDB.4.0;Data Source=somePathHere\data.xls;Extended Properties="EXCEL 8.0;HDR=NO";
Whenever i tried to preview my records, the error will prompt out. I have MS Excel 2010 installed in my PC.
What I have tried:
1. Change excel connection manager into
Provider=Microsoft.ACE.OLEDB.12.0;Data Source=somePathHere\data.xls;Extended Properties="EXCEL 12.0;HDR=NO";
but error is still the same except for JET has become Access.
2. Add single quote in "Extended Properties" as suggested online but to no avail.
3. Reinstall Access 2010 Distributional package but problem still persist.
4. Overwrite the .xls into .xlsx successfully solving the problem but due to some limitation i am not allowed to do that.