Quantcast
Channel: CodeSection,代码区,SQL Server(mssql)数据库 技术分享 - CodeSec
Viewing all articles
Browse latest Browse all 3160

Stop SSIS Package Execution in SSISDB

$
0
0

Suppose a package has been running for quite a long time or has been mistakenly run and we would like to stop its execution.

To do so

Right Click on SSISDB Select All Execution Reports
Stop SSIS Package Execution in SSISDB
Filter it to see all the Running packages
Stop SSIS Package Execution in SSISDB
We can see our all the running packages there.
Stop SSIS Package Execution in SSISDB
Now to stop any specific package, right click SSISDB and select Active Operations
Stop SSIS Package Execution in SSISDB
From the Active Operation window, select the running job and click on Stop button to stop its execution.
Stop SSIS Package Execution in SSISDB
Another option is to use the stored procedure à get the operation id of the running package and execute the stored procedure
Stop SSIS Package Execution in SSISDB
Exec catalog.stop_operation @operation_id =199915
Stop SSIS Package Execution in SSISDB

Hope it helps..


Viewing all articles
Browse latest Browse all 3160

Trending Articles