November 25, 2019 at 8:35 pm
good evening
I need to migrate packages ssis 2008 to 2017
I am looking for a method to export my packages that are on the 2008 server
on the net I find this command who has a feedback experience
USE MSDB
SELECT 'EXEC XP_CMDSHELL ''DTUTIL /SQL ' + NAME +' /COPY FILE;
D:\SQLDBAExperts\Packages\' + NAME+'.DTSX' + ' /QUIET''' FROM SYSSSISPACKAGES
November 26, 2019 at 9:10 pm
Thanks for posting your issue and hopefully someone will answer soon.
This is an automated bump to increase visibility of your question.
December 3, 2019 at 1:34 pm
I have no experience at all with that command, so I can't help you there, but I think I would find it easier to pull them into Visual Studio, convert them there (making sure you select your target version), and then deploy to the new server. I'm under the impression a 2008 to 2017 conversion would have a few gotchas that would be easier to work through within the Visual Studio environment, but I've been wrong before, and at some point anticipate being wrong again.
Luther
December 3, 2019 at 4:16 pm
good evening
I need to migrate packages ssis 2008 to 2017
I am looking for a method to export my packages that are on the 2008 server
on the net I find this command who has a feedback experience
USE MSDB
SELECT 'EXEC XP_CMDSHELL ''DTUTIL /SQL ' + NAME +' /COPY FILE;
D:\SQLDBAExperts\Packages\' + NAME+'.DTSX' + ' /QUIET''' FROM SYSSSISPACKAGES
I don't know a thing about SSIS migrations except that I'm very happy that I don't have to get involved with them at all.
On the command, though, that code will create code that you need to copy and run separately. I don't know if the structure of the DTUTIL command is correct but it looks reasonable.
--Jeff Moden
Change is inevitable... Change for the better is not.
December 4, 2019 at 2:14 pm
Hi,
here what I did in ssis packages migration from 2008 to 2016 (I think it's the same for 2017):
However I had only few packages to export/import, maybe this is not the best solution to follow if you have a lot of packages to migrate.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply