what is JCLLIB and PROCLIB in jcl and their syntax
Answer Posted / raghu
//proccall jcllib order=proclib.name,disp=shr
//proclib dd dsn=proclib.name,disp=shr
| Is This Answer Correct ? | 6 Yes | 3 No |
Post New Answer View All Answers
write a jcl to execute a job by 7:00 am on jan 20,1986?
Explain dfsort utility?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
what are the statements that are not valid to be included in an include statement?
Explain the function of //cntl statement?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
What is the function of //jcllib statement?
how can the same proc be re-used and called by many jobs?
How can the disposition of sysout datasets be set for an entire jobstream?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
How do you submit a job for execution?
Name the statement which can be used to send data to another mvs jes3 node?
How is the record format of an output dataset specified?
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?