Import/export multiple SSIS packages
While I was working on a migration project recently, I had the task of importing and then exporting multiple packages - about 120~ on to a new server. Usually, if there are less numbers of packages we can do this task manually but, in this case it was tedious and time consuming to import and then export it manually. Here's where the utility DTUTIL comes in handy, this utility has many options that you can use according to your need. What I used is very simple and easy to use. I created a two batch file using the below commands: Exporting SSIS Packages to File: dtutil /SQL ExportPackage /COPY FILE;C:\Packages\ExportPackage.dtsx Importing SSIS Package to SQL: dtutil /file C:\Packages\ImportPackage.dtsx /copy sql;ImportPackage Find out more details and a comprehensive list of options. Discover more about our expertise in SQL Server.
Share this
Previous story
← Creating a test lab using VirtualBox / NAT networking
You May Also Like
These Related Stories
Windows containers: installing SQL server
Windows containers: installing SQL server
Sep 21, 2015
8
min read
How to fix SSIS deployment error "please create a master key"
How to fix SSIS deployment error "please create a master key"
Apr 24, 2019
2
min read
Fix: SSIS Installation Error – Rule “Existing clustered or clustered-prepared instance” Failed
Fix: SSIS Installation Error – Rule “Existing clustered or clustered-prepared instance” Failed
Mar 29, 2022
1
min read
No Comments Yet
Let us know what you think