Is it possible to deploy SSIS 2012 package on SQL Server 2008

耗尽温柔 提交于 2019-12-18 07:29:12

问题


I have a package that is developed in SSIS 2012 using Visual Studio 2010.

  • Is it possible to deploy/attach this package on SQL Server 2008

  • If it is possible, does the licence of the sql server matter


回答1:


no, you cant. SSIS package are not backwards compatible.

Also it doesn't make much sense if you think about it. If it was the other way around, "maybe" it could be done because 2012 would somehow be aware of 2008 structure, but 2008 engine isn't aware of 2012 package structure.




回答2:


You cannot run it with the 2008 version of dtexec and you certainly cannot deploy it into the catalog, but if you could install the minimum you need to run SSIS 2012 onto a server somewhere you could then execute the package from filesystem with the 2012 version of dtexec.

See also http://msdn.microsoft.com/en-us/library/bb522577.aspx




回答3:


Best guess would be no. The engine to run the SSIS package would have to match the release level of the code. You have not been able to run any SSIS package on any release level below the developed level of the package (i.e. 2005 server will not run a 2008 package etc.)

It is not a license issue, it is an engine issue. The SSIS engine code changes with each release and therefore the code would be running in an engine that doesn't support the features or structure of the package.



来源:https://stackoverflow.com/questions/10499290/is-it-possible-to-deploy-ssis-2012-package-on-sql-server-2008

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!