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 |
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.
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
i have five step in jcl.my forth step is gdg.gdg was abend.when will job complete,hoe to handle you
There are two input sorting files and there is a need to create one sort out file which contains data of both input files. What is the sort card for this. Write a sample JCL for this using a control card?
How to change default PROCLIB?
Is it possible to define dd statements as you want?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
What is the error in the following JCL statements : I) //step#three exec pgm=hkbc762 ii) //step#3 exec pgm = hkbc762 iii) //step#3 exec pgr = hkbc672
What is dummy parameter in JCL??
In SPACE,what is directory,RLSE
How do you skip a particular step in a proc/JOB?
AM HAVING A FILE WHICH CONTAIN 12 DATS OUT OF WHICH 4 ARE DUPLICATES HOW TO REMOVE THE DUPLICATE FILES IN JCL? CAN I GET THE PROGRAM FOR THIS