Attempting to cancel or delete the jobs stuck in Waiting doesn't do anything and requires you to run an update query against the Application Repository database. In the Application Repository database look in the QRTZ_ACTIVITY table. Identify the row in question and change the Status column to 2. (For example, if the row has a TS_ID of 5, you can run this statement: UPDATE QRTZ_ACTIVITY SET STATUS = 2 WHERE TS_ID = 5)
|