Question

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

Was it helpful?

Solution

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.

OTHER TIPS

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

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top