-1

I have been searching for a while on this and have no real direction on what the problem may even be. I haven't done SSIS for about 5 years and even 5 years ago I only did one or two.

I have Visual Studio 2012 on my machine. I installed SSDT so that I could write an SSIS package. I have the package written and working locally but when I try to set up a job in the SQL Agent on the server I get this error after selecting the package:

enter image description here

I have looked into this error and none of the resolutions I have found are working. My project is already set to not use 64 bit mode. I'm kind of thinking this might have to do with the fact that the version of SQL Server on that machine is just 2008 and that maybe that means it has an incompatible SSIS runtime. I don't know if there is an additional runtime I need to install to get this to work and I don't know if it's backward compatible with the old runtime they are using if that's even the problem.

I can't find any information online about setting up the environment for an SSDT SSIS package..

Please help.

Thanks

4

2 回答 2

0

您有一个针对 SQL Server 2012 Integration Services 对象模型构建的包。您正试图在 2008 实例上执行它。向后兼容不是一种选择。

您需要将 2008 实例更新到 2012(需要注意许可更改)或使用 2008 模型重新创建您的包。

于 2013-09-20T20:39:12.813 回答
0

您必须执行 2 个步骤:1) 使用正确的版本构建您的软件包 - 将 2208 实例更新到 2012 2) 如果您安装了多个版本并且您尝试使用 .ispac 文件进行部署,它很可能会选择最新版本。要解决此问题,您必须通过转到安装位置来选择正确版本的安装程序。就我而言,它是 (C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn)

于 2015-08-31T19:46:40.393 回答