I am trying to get some details for one of my SSIS migration project. I need to find all of the SSIS .dtsx files which are located on file system storage and they are getting executed by the SQL Instances. I have connected my 100 instances through registered servers and ran below query to find out the physical .dtsx files but this is not providing me complete details.USE MSDBGOSELECT sj.job_id as JobId, sj.name as JobName, sjs.step_name as StepName, sjs.Command as CommandFROM sysjobs sj INNER JOIN sysjobsteps sjs ON(sj.job_id = sjs.job_id) WHERE sjs.Command like '/FILE%' GOIs there any way I can get the list of all physical .DTSX stored on file system in below format?SSIS Location SQL InstanceE:\SSIS\BankXYZ_Load.dtsx Servername\InstanceThanks in advance!Austin
↧