Reputation: 3029
After extensively searching over google about SSDT and SSDT-BI for different SQL Server versions, I would like someone to pin-point differences and clear my messed up thoughts !
Aim: To upgrade SSIS packages from sql server-2012 to sql server-2014.
Now I need to deploy them on SQL Server 2014 Developer edition (for test purpose).
Problem:
Deployment Target Version
in 2015 and 'package upgrade' is done in 2015 when actually deploying at any version. So am I right?What I understand:
Backwards compatibility of SQL 2016. ie Packages created in SSDT 2015 can be deployed on 2016,2014,2012.
I would appreciate someone answering point by point and clear the confusion. Definitely, there is some pointers, which I don't understand fully.
Cheers.
ps: This blog was helpful while figuring things.
Upvotes: 4
Views: 6366
Reputation: 37313
First and Second problem
If you check this Microsoft article, then you will see that SSDT 2015 can be used with SQL Server 2012+, but SSDT 2013 is only used with SQL Server 2014
Third problem
If you refer to this Artcile:
In SSIS 2012 , 2013:
Because of confusion with the database tools in Visual Studio (also called SSDT), the templates were renamed to SQL Server Data Tools for Business Intelligence (SSDT-BI).
In SSIS 2015 :
Database tools and business intelligence tools are combined into one single product: SSDT. Separate download.
You can also refer to this link for additional info:
Upvotes: 3