Hi @Bobby P,
Thank you for reaching out to the SQL Forum.
Issue with the Excel Connection Manager in SSIS, where it fails to retrieve table information and connect to the source, despite following steps like installing the 64-bit Access Database Engine and toggling the Run64BitRuntime setting. The root of the problem often lies in a mismatch between the bitness of SSIS and the installed drivers SSIS in Visual Studio typically runs in 32-bit mode by default, so if you've installed the 64-bit version of the Access Database Engine, you may need to set Run64BitRuntime to True in your project properties, or alternatively uninstall the 64-bit version and install the 32-bit one instead. Additionally, your Excel Connection Manager's ConnectionString might need manual adjustment to something like Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Path\To\File.xlsx;Extended Properties="Excel 12.0 Xml;HDR=YES"; to ensure compatibility with .xlsx files. Make sure the Excel file isn’t open or locked by another process, avoid mixing 32-bit and 64-bit Office components, and consider saving the Excel file as CSV and using a Flat File Source as a workaround if needed
Thanks,
Lakshmi.