如何在 64 位包中执行 32 位 SSIS 包?

我正在开发一个集成服务项目以构建 ETL.

I'm working on a Integration Services project in order to build an ETL.

我的一个包包含多个脚本任务来解析 Excel 内容(Microsoft Ace 12 驱动程序).这个包需要在32位模式下执行(我不能在64位模式下执行这个包).我无法安装 64 位版本的驱动程序.

One of my packages contains multiple script tasks to parse Excel content (Microsoft Ace 12 driver). This package need to be executed in a 32 bit mode (I can't execute this package in 64 bit). I can't install 64 bit version of the driver.

此外,我将其包装在更高级别的 64 位包中.加载调用"包应在 32 位模式下执行.

Moreover, I wraped it in a higher level 64bit package. The "Load calls" package should be executed in a 32bit mode.

那么有没有办法在 64 位包中运行 32 位执行包任务?

So is there a way to run a 32bit execution package task in a 64bit package ?

谢谢!

推荐答案

可以将包执行从 64 位更改为 32 位

possible to change package execution from 64 bit to 32 bit

Projects Menu->Package Properties(Last in menu)->Debugging

Projects Menu->Package Properties(Last in menu)->Debugging

更改 Run64BitRuntime->false

Change Run64BitRuntime->false

相关文章