Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 916
Thea Avatar asked May 08 '12 13:05

Thea


People also ask

Can I run SSIS 2012 and SSIS 2008 packages on the same server at the same time?

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.

How do I deploy SSIS packages in SQL Server 2008 r2?

On the Solution Explorer of the BIDS environment, right click on the Project Node and select the Properties. Set the “CreateDeploymentUtility” to true and click OK. Right click on the Project node and click Build, which will generate Integration Service Deployment manifest file under the Project/Bin/Deployment folder.

What are the different ways of deploying SSIS packages?

Integration Services supports two deployment models, the project deployment model and the legacy package deployment model.

How deploy SSIS package in SQL Server?

a) File system deployment:Go to manifest file → rt click → deploy → next → select file system deployment → specify folder to deploy → click next → next → finish. Go to deployed folder and observe the package and configuration files deployed or not.


2 Answers

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.

like image 143
Diego Avatar answered Oct 14 '22 16:10

Diego


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

like image 36
rohancragg Avatar answered Oct 14 '22 15:10

rohancragg