RATE THIS ANSWER
0
Click to Vote:
0
0
Last Answered:
Jul 23 2008 8:54 AM GMT
by Gilly400
Hi,
I wouldn't try doing this in the jobscheduler. I suggest you write a small CL program to run your command every 5 minutes :-
PGM
LOOP:
Yourcommand
DLYJOB DLY(300)
GOTO CMDLBL(LOOP)
ENDPGM Then you only need to submit the CL program one time and it'll keep running your command every 5 minutes.
Regards,
Martin Gilbert.