What version of visual studio do we need to develop integration services projects ?

Greg Booth 1,296 Reputation points
2022-12-02T11:56:34.307+00:00

We are going to be developing SSIS Solutions for SSIS (Sql server) 2019.
We will be using scripts ( c#) in the SSIS packages.
What version of visual studio do we need ?
Can we use Visual Studio Community edition and then add the SSIS extyension from the marketplace ? (from https://marketplace.visualstudio.com/items?itemName=SSIS.SqlServerIntegrationServicesProjects )

A collegue recently tried doing this, and found that they could create packages, but not edit the scripts.

We would like to avoid using the professional version of visual studio.

SQL Server Integration Services
SQL Server Integration Services
A Microsoft platform for building enterprise-level data integration and data transformations solutions.
2,456 questions
0 comments No comments
{count} votes

Accepted answer
  1. Yitzhak Khabinsky 25,026 Reputation points
    2022-12-02T13:48:22.467+00:00

    Hi @Greg Booth ,

    For SSIS development you would need the following:

    • VS2019 v.16.11.* any edition, including Community edition.
    • SQL Server Integration Services Projects extension for VS2019.
      v.3.16, and stay away from any 4. version of it. These versions are experimental, buggy, and missing some features.

    A collegue recently tried doing this, and found that they could create packages, but not edit the scripts.

    SSIS Script Taks is using another sub-component: Microsoft Visual Studio Tools for Applications 2019.
    You could go the Control Panel, Program and Features, find it there, right mouse click and select Repair it.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Greg Booth 1,296 Reputation points
    2022-12-02T14:52:24.207+00:00

    Thanks very much!

    0 comments No comments