Our dev server has 64-bit SQL Server 2008 R2 with SSIS. To be able to import XLSX files directly from T-SQL (via OPENROWSET ), we installed the Microsoft Access Database Engine Redistributable 64-bit on the dev server. A 32-bit version is already installed on the server, so we installed it using the / passive switch.
Since this happens, our existing packages fail. One of them reports
This step did not generate any output. The return value was unknown. The process exit code was -1066598274. Failed to complete the step.
It’s just interesting if anyone else managed to set up their server to use OPENROWSET files for XLSX and also to have SSIS on the same server, or does anyone know if this configuration is possible?
Edit: I have to add that unsuccessful packages start from an SQL agent job. When I connect to the Integration Services Manager server through SQL Server Management Studio and run the package (by navigating to the package, right-clicking on it and selecting "Run Package"), it succeeds.
Steve source share