Reputation: 427
I have a SQL Server Agent job that runs on daily basis and the first step in the job is to execute a SSIS package. For the past a few days the step 1 is being running endlessly. Is there anyway that I can shut down the running step?
Upvotes: 2
Views: 2521
Reputation: 660
If you are using Integration Service Catalogs, right click
Open 'Active Operations', there is 'Stop' button.
You can also pull the 'All Execution' Report from Catalog or run query.
-- Status = created (1), running (2), canceled (3), failed (4), pending (5), ended unexpectedly (6), succeeded (7), stopping (8), and completed (9)
SELECT * FROM SSISDB.[catalog].[executions]
Don't have enough information can help you, what is the 1st step1 message in the job step history? In the job properties, click the step, in the advanced tab, what is the number of Retry attempts? No information how you setup job steps, packages?
Upvotes: 2