Suppose there r 10 steps . Out fo which i want to execute
10th, 9th and 8th in reverse order without using IEBEDIT.
How can i do that..???
Answers were Sorted based on User's Feedback
Answer / om prakash yadav
MR. Nagesh answer is coorect.
DPRTY PARAMETER:=
This parameter is used to change to assign
a dispatching priority to the job step.. Dispatching
priority is used by the statement to determine the order
inwhich tasks are to be executed.
DPRTY assign a priority to a JOB step.
syntex- DPRTY=(values1, value2).
values1 between 0-15 and specifies the priority of the
step.. value2- is also between 0-15.
DPRTY is computed as DPRTY=(value1*16)+value2.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / nagesh
How about using Dprty parameter, this parameter will
assign priority to job steps , however I am not as to where
we need to code it (At job level or step level ), i guess
it should be used at step level ,,,,
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / om prakash yadav
i don't know exaclty but it is possible trough PRTY
parameter.
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / sreerag p n
if you have 10 steps from that if you want to execte 10th
9th and 8th then first you specitfy cond parameter if you
specify a false cond in these 3 steps then that job will
execute(1 to 7 specify true cond) these 3 steps and after
specifying cond you give dprty.give first priority to 10th
and then 9th and 8th.
Sreerag.P.N
| Is This Answer Correct ? | 1 Yes | 4 No |
What are the keywords associated with DCB? How can you specify DCB information? What is the OS precedence for obtaining that DCB information, ie. where does the system look for it first?
Does jcl support automatic restart?
Explain the function of dd name parameter with a 2 part structure; audit.report?
why jobstep can't be more than 255 and for GDG has max limit 255 . Is there any relation between the two
While using SORT FILES =NONE,XSUM I am getting error "ICE172A E XSUM IS NOT SUPPORTED - USE ICETOOL SELECT IF APPROPRIATE"..I want to write duplicate records a a serparte file..how i can do tht?
what is a null indicator in db2?
Is condition checking possible in jcl?
What is dummy parameter in JCL??
If job is submitted with typerun = hold then how can we submit the same job?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
When we give TYPERUN = SCAN , what are the syntax errors we get?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*