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 put a dependency on job in jcl using opc scheduler?
When a dataset is UNCATALOGED in a JOBSTEP, how to get its UNIT and VOL in JCL to refer in subsequent steps ?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
Definition of COND parameter in JCL
In order to continue a job after a return code of 12 in step1, what the step2 exec statement include?
How many JOB statements a JCL can have ? If there are more than one JOB statements in a JCL, are they submitted in succession or in parallel ?
wt will happen to the step of a job if u code COND=ONLY
While using SORT FILES =NONE,XSUM I am getting error "ICE172A E XSUM IS NOT SUPPORTED - USE ICETOOL SELECT IF APPROPRIATE"..I want to write duplicate records a a serparte file..how i can do tht?
What is catelog procedure and how many catelog procedure to use in one job?
Can a job have only steplib and no joblib ?
in a series of 10 steps, i need to run only 1,3,5,7 & 9th steps only. how do u code?
How can you trap abends in the JCL?