How is the record format of an output dataset specified?
No Answer is Posted For this Question
Be the First to Post Answer
If the proc stepname is excluded while overriding the COND, TIME, REGION and PARM parameters while calling the proc, will the override only apply to the first step in the proc or all the steps for all the above parameters?
what is the difference between the JCLLIB and JOBLIB ,and where do we use it ?
what is a MODELDSCB?
can u execute a proc from another proc?
How to pass data to a program that is coded in an exec statement?
how would you create a temporary dataset? And where will you use them?
Describe the DD statement, its meaning, syntax and keywords?
Is automatic restart possible in jcl? If yes, how?
Can a temporary dataset be converted to permanent dataset and vice-versa in the middle of a job ?
in step1 of a jcl,disp=(mod,delete,delete) step02 exec pgm=ccc,cond=(0,le) will step02 be executed? i)never ii)always iii) iv)... i dont remember options
Suppose your program is reading a Sequential Vsam file. The file contains 10 records. How will you code the JCL to read only 2nd, 5th, 7th,and 10th record?
Hi, I have 3 files say file A , file B and file C.I want to form an output file in which i will have all the records from file A. Files B and C also may contain records that are present in file A.I want those records also to be included in my output file. for eg: file A contains: 1 2 3 file B contains: 2 4 5 file C contains: 1 3 5 So in my output file should look like: 1 2 3 2 1 3 Can any one help ???.....thanks in advance.