Automate Version number Retrieval from .Dtsx files

前端 未结 3 1678
星月不相逢
星月不相逢 2020-11-29 11:13

Is there a way or query by which I can find the version number of SSIS packages (*.dtsx files)?

I have the *.dtsx files in my Team Foundation Server for

3条回答
  •  失恋的感觉
    2020-11-29 12:04

    You can use this query if you use project deployment solution (If you have SSISDB in your server) :

    SELECT 
       [name],
       [package_format_version]
    FROM [SSISDB].[catalog].[packages];
    

    Note: Integration Services must be installed

提交回复
热议问题