简体   繁体   中英

How to see SSIS packages on SQL Server

My issue pertains specifically to SSIS packages saved to "SQL Server" through the Import and Export Wizard in SQL Server Management Studio. When a package is saved to "SQL Server" instead of "File System", it does not save to the Integration Services Catalog. My question is, how do you access those packages for editing or viewing.

IE, I want to make a minor adjustment to an SSIS package stored in SQL Server, but I do not recall all the changes and options I made when initially setting it up (so I cannot simply recreate it). Additionally, I'd like to delete old test versions of the package.

As per the Wizard documentation:

The wizard saves the package in the msdb database in the sysssispackages table. This option does not save the package to the SSIS Catalog database (SSISDB).

Removing records from this table will remove the package.

You can open the package to edit it with SQL Server Data Tools. Create a new SSIS project, and then in the Solution Explorer pane, right-click on the SSIS Packages folder icon and choose Add existing package... .

In the next dialog, you'd choose "SQL Server" as the package location, put in your server address and login credentials, and then for "Package Path" click on the three dots and it will let you browse to the package. Hit "OK" and your package will then be loaded into SSDT.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM