what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?
Answers were Sorted based on User's Feedback
Answer / ravindran
The dataset with single & is called Symbolic parameter. The
dataset with double && is called temporary dataset.
The Symbolic parameter gets the value from PROC. The
temporary datasets are created in the job flow and gets
deleted at the end of the job.
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / srk
symbolic param : which allow multiple users to specify their
own values to a paramaeters(specified as ¶mname in
procedures) in jcl which are commonly used.
temporary data sets : data sets whose life time is till the
execution of the job itself(specified as dsn=&&datasetname
or with out specification of dsn parameter in dd statement)
| Is This Answer Correct ? | 3 Yes | 2 No |
How to DEBUG a JCL?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
How I sort the records in a file and copy the first 10 records to another file
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
how can i code cond parameter in procedures ? i have a jclk calling a proc which has 10 steps i want to execute from step 5 to step 10 where can i code restrat parameter or cond parameter for ths
Can we able insert data into a PS file Using IEBUPDTE utility??? If Yes can anyone describe it please..
What are the jcl procedures?
Explain dfsort utility?
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.
Max generations in GDG??
What do you understand by the terms: joblib and steplib?
There are 2 steps in a JCL. If the first step abends due to system or user abend and the second step has COND specified as EVEN or ONLY, will this step still be executed inspite of the abend in the previous step?