Operating System - OpenVMS
1753769 Members
5267 Online
54796 Solutions
New Discussion юеВ

EMERGENCY BATCH JOB REPEATING CAN'T STOP

 
SOLVED
Go to solution
owilliams
Frequent Advisor

EMERGENCY BATCH JOB REPEATING CAN'T STOP

IHAVE A JOB SUBMITTED TO A QUEUE THAT IS RECREATING ITSELF OVER AND OVER. PLEASE ANYONE HOW CAN I STOP IT???
8 REPLIES 8
Andy Bustamante
Honored Contributor

Re: EMERGENCY BATCH JOB REPEATING CAN'T STOP


$ stop/queue

will stop the queue, you can then DELETE/ENTRY on the job. An alternate would be to DELETE /QUEUE and recreate the queue.


Andy
If you don't have time to do it right, when will you have time to do it over? Reach me at first_name + "." + last_name at sysmanager net
owilliams
Frequent Advisor

Re: EMERGENCY BATCH JOB REPEATING CAN'T STOP

iS THERE A WAY TO CLEAR MULTIPLE ENTRY ON A QUEUE AT 1 TIME. I HAVE THOUSANDS OF ENTRYS I NEED TO CLEAR.
owilliams
Frequent Advisor

Re: EMERGENCY BATCH JOB REPEATING CAN'T STOP

IS THERE A WAY TO CANCEL ALL PENDING JOBS IN A QUEUE? ALSO I NEED TO STOP WHATEVER IS CAUSING THIS SO I CAN RESTART THE QUEUES.
Steven Schweda
Honored Contributor
Solution

Re: EMERGENCY BATCH JOB REPEATING CAN'T STOP

See:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=1070486

It's talking about a print queue, but the
principle should be good.
Hein van den Heuvel
Honored Contributor

Re: EMERGENCY BATCH JOB REPEATING CAN'T STOP


$COPY bad-job.com saved-bad-job.com
$COPY /OVER nl: bad-job.com

$DELE /QUEUE...
$INIT ...

Cheers,
Hein.

owilliams
Frequent Advisor

Re: EMERGENCY BATCH JOB REPEATING CAN'T STOP

YOU ARE THE BEST!! THANKS SAVED ME HOURS MAYBE DAYS.
owilliams
Frequent Advisor

Re: EMERGENCY BATCH JOB REPEATING CAN'T STOP

i HAVE ONE QUEUE THAT GIVES ME AN ERROR. CAN I DO THIS QUEUE SOMEHOW. THE ERROR:
$ INIT /QUEUE JUNKQ !add /BATCH or /DEVICE
$ ASSIGN/MERGE JUNKQ SYS$BATCH_NRCAVB
%JBC-F-INCDSTQUE, inconsistent destination queue type
owilliams
Frequent Advisor

Re: EMERGENCY BATCH JOB REPEATING CAN'T STOP

I got got it. Thanks Again.