How can we see data in TEMPARARY DATA SET in JCL ?
Answer Posted / paddu
//job1 job a123,paddu
// step1 exec pgm=program1,
//dd1 dd dsn=&&temp.
temporary dataset names are indicated by &&.
| Is This Answer Correct ? | 12 Yes | 8 No |
Post New Answer View All Answers
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
In sms datasets, what is the function of the dd avgrec keyword?
What do you know about jcl?
How jcl is used for testing batch programs?
Explain how can a jobs execution priority be modified?
Step 1 RC 4 Step 2 Step 3 I want to know the COND parameter which can be coded in step 2 or 3. Step 2 should be executed based on Step 1 RC and Step 3 should not be executed based on step 1's RC
What is Cataloged Procedures?
How do you submit a job for execution?
Name a few IBM utility programs, and explain its function.
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
Name what parameter directs the output of the job log dataset?
a dd statement has 2 types of parameters. Name them?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.