Sql Server SSRS & SSIS

    
      select * from [Catalog] where name='ReportName'
      
      --ScheduleID = SSIS job ID
      select * from reportschedule where reportid in (
        select ItemID from [Catalog] where name='ReportName'
      )
      

      
    
    select * from subscriptions where SubscriptionID in   
     ( 
      select SubscriptionID from reportschedule where reportid in (
        select ItemID from [Catalog] where name='ReportName'
      )
     ) 
      
原文地址:https://www.cnblogs.com/silva/p/2359173.html