Had a developer wander across confused about where the SSIS package he’d just redeployed had gone. No errors when he’d deployed the package to Integration Services, but when he looked at the properties of the package (or at least the one he thought he’d uploaded) it was showing a deployment date of 3 weeks ago.
A handy feature of having SSIS now using SSISDB to store it’s packages is that we can now query it to find out where it had gone with some simple T-SQL. In this case all I needed to do was to ask:
select ip.name, id.name as 'FolderName', ip.deployed_by_name, ip.last_deployed_time from internal.projects ip inner join internal.folders id on ip.folder_id=id.folder_id order by ip.last_deployed_time desc
And I could see that the last time he’d deployed it, it had gone into Folder Y rather than Folder X. So after a quick clean up and redeploy everything was as he expected.
Leave a Reply