Das kann per SQL festgestellt werden:
/*per SQL die "laufende SSIS package executions" bestimmen:*/ /*Select status, start_time as start_time2, folder_name, project_name ,* from SSISDB.catalog.executions where end_time is null order by start_time desc */ Select top 5 status, start_time as start_time2, folder_name, project_name ,* from SSISDB.catalog.executions order by start_time desc /* Die richtige execution_id auswählen und als @operation_id eintragen (typisch MS - muss ja auch keiner Logik folgen): Exec catalog.stop_operation @operation_id = 12210 Exec catalog.stop_operation @operation_id = 12211 */
…oder im SSMS (Management Studio) herausfinden:
per SSMS-Dialog:
Rechte Maus auf „Integration Services Catalogs \ SSISDB“ und „Active Operations“ auswählen…Dort die gewünschte Package auswählen und auf „STOP“ klicken.
Links:
https://sabigdata.wordpress.com/2015/02/12/stop-ssis-package-execution-in-ssis-catalog/