Skip to content

Commit 5850533

Browse files
authored
Merge pull request #116808 from lrtoyou1223/fixcancelsectionbranch
fix issue on cancel section
2 parents c466fcd + dfc7cef commit 5850533

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/data-factory/how-to-invoke-ssis-package-managed-instance-agent.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ To cancel package execution from an Azure SQL Database Managed Instance Agent jo
103103
1. Find your SQL agent **jobId** from **msdb.dbo.sysjobs**.
104104
1. Find the corresponding SSIS **executionId** based on the job ID, by using this query:
105105
```sql
106-
select * from ssisdb.internal.execution_parameter_values_noncatalog where parameter_value = 'SQL_Agent_Job_{jobId}' order by execution_id desc
106+
select * from '{table for job execution}' where parameter_value = 'SQL_Agent_Job_{jobId}' order by execution_id desc
107107
```
108+
If your SSIS packages are in SSISDB, then use **ssisdb.internal.execution_parameter_values** as table for job execution. If your SSIS packages are in file system, then use **ssisdb.internal.execution_parameter_values_noncatalog**.
108109
1. Right-click the SSISDB catalog, and then select **Active Operations**.
109110

110111
!["Active Operations" on the shortcut menu for the SSISDB catalog](./media/how-to-invoke-ssis-package-managed-instance-agent/catalog-active-operations.png)

0 commit comments

Comments
 (0)