How do I view the SSIS packages in SQL Server Management Studio?

前端 未结 7 1906
盖世英雄少女心
盖世英雄少女心 2021-02-04 23:04

Argh! I created an SSIS package via an Import Wizard and I can\'t find the SSIS packages on the server using Management Studio. Execute an SSIS package doesn\'t appear as an opt

7条回答
  •  一整个雨季
    2021-02-04 23:29

    The wizard likely created the package as a file. Do a search on your system for files with an extension of .dtsx. This is the actual "SSIS Package" file.

    As for loading it in Management Studio, you don't actually view it through there. If you have SQL Server 2005 loaded on your machine, look in the program group. You should find an application with the same icon as Visual Studio called "SQL Server Business Intelligence Development Studio". It's basically a stripped down version of VS 2005 which allows you to create SSIS packages.

    Create a blank solution and add your .dtsx file to that to edit/view it.

提交回复
热议问题