Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hi, have you a solution for your problem? My server is burning after launch a mega purge ... and i can't delete the job.
Edit: This solution work
https://www.ptc.com/appserver/cs/view/case_solution.jsp?n=CS33859&lang=en
1. Disable queues named like wt.router.5.* (e.g wt.router.5.1,wt.router.5.2) in the Queue Manager
2. Stop the Method Server
3. Backup the purgerecord table using SQLPlus:
create table purgerecord_bak as select * from purgerecord;
4. Perform the update in SQLPlus while the Method Server is not running:
update purgerecord set status='failed' where ida2a2=(select ida2a2 from purgeRecord where name='your_job_name');
commit;
5. Start the MethodServer
6. Delete the purge job through the Purge Manager
7. Remove the hung entries from the disabled queues through the Queue Manager
8. Enable the queues in the Queue Manager