Reputation: 767
I was wondering how I would be able to get an SSIS package from a SQL Server that has already been deployed and move it to another SQL Server?
NOTE: I do not have the original package project to just install it on the other server.
Upvotes: 4
Views: 60606
Reputation: 11
Do the following:
You will now have the package transferred to the second server and saved in MSDB. It is not certain that the SSIS package will work without modifications as mentioned by previous post.
Upvotes: 1
Reputation: 3008
It depends on how the package has been deployed. If it's in MSDB, you can right-click the package in SSMS and choose Export Package. You can save it locally as file and the deploy that to another server. If it's on the file system, you can just copy the .dtsx file.
Bear in mind that any hard coded connections may not be able to be changed, unless you can load the package in BIDS.
Upvotes: 7