Skip to main content
Solved

Execution has been skipped for execution package, but why?


sierd.zuiderveld
Contributor
Forum|alt.badge.img+1

Hey, 

Usually when an execution package fails to start it is due to another already running, then in the event viewer we get a message like this: 

Here, we see that the issue is due to another package. 

Now I have noticed that we occasionally also get messages like this one: 

Difference being that it does not show which ‘other’ package is causing this issue. 

 

Is this a common occurrence?

Best answer by bas.hopstaken

Hi @sierd.zuiderveld ,

You can check in the task manager in the details if there is a timextender.exe process running using PID 10520. You can also see the user that is running this process. If you check the execution log history in all execution packages and you click the ‘Execution Package’ button for each log. You will find the Process ID that this package is/was using. This way you can find the package that belongs to PID 10520.

Although it is an old article, I use this a lot when troubleshooting scheduled reload issues: https://legacysupport.timextender.com/hc/en-us/articles/115004728763-Scheduled-Execution-issues-Did-it-not-start-did-it-fail-or-is-my-execution-still-running-

Most of the time the solution is explained in the section ‘Remove old unknown schedules'  in this article. 

 

View original
Did this topic help you find an answer to your question?

bas.hopstaken
TimeXtender Xpert
Forum|alt.badge.img+4

Hi @sierd.zuiderveld ,

You can check in the task manager in the details if there is a timextender.exe process running using PID 10520. You can also see the user that is running this process. If you check the execution log history in all execution packages and you click the ‘Execution Package’ button for each log. You will find the Process ID that this package is/was using. This way you can find the package that belongs to PID 10520.

Although it is an old article, I use this a lot when troubleshooting scheduled reload issues: https://legacysupport.timextender.com/hc/en-us/articles/115004728763-Scheduled-Execution-issues-Did-it-not-start-did-it-fail-or-is-my-execution-still-running-

Most of the time the solution is explained in the section ‘Remove old unknown schedules'  in this article. 

 


sierd.zuiderveld
Contributor
Forum|alt.badge.img+1

Hey @bas.hopstaken , thanks that is very helpful. I didn't wanna search through every package manually, this repository query seems to do the trick! 
 

DECLARE @ProcessId INT;
SET @ProcessId = 10520;

SELECT [ExecutionId]
      ,[ProjectId]
      ,[ExecutionPackageId]
      ,[BatchId]
      ,[ProjectVersion]
      ,[ExecutionPackageName]
      ,[Start]
      ,[End]
      ,[EndStatus]
      ,[ExecutionMessage]
      ,[ParentExecutionId]
      ,[ExecutionPackageSetupXML]
FROM [dbo].[ExecutionPackageLogs]
WHERE [ExecutionPackageSetupXML] LIKE '%<ProcessId>' + CAST(@ProcessId AS NVARCHAR) + '</ProcessId>%';

Maybe it can help others as well. 


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings