Hi,
I'm trying to import an excel 2007 *.xlsx file to a new table in MySQL using SSIS. In the past, I only import .xls files using MICROSOFT.JET.OLEDB.4.0 . I have installed Microsoft.ACE.OLEDB.12.0 and attempted to modify my connection string.
The original constr:
Data Source=\\folder1\folder2\sample.xls;Provider=MICROSOFT.JET.OLEDB.4.0;Extended Properties=Excel 8.0;Persist Security Info=True;JET OLEDB:DATABASE PASSWORD=;
I'm not sure what I need to do in order to convert it to fit ACE.OLEDB.12.0, any one can help?
The connection string is stored in a txt file to be used by SSIS, not in the code.