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 |
Max. No of DD statements in a job ?
What will happen if we write two STOP RUN's in a COBOL program?
When will we need to specify Space parameter ?
How do you submit JCL via a Cobol program?
Is stepname is a MUST and should be unique also for each JOBSTEP ? or system can supply the stepname for a step which is not given a name by the programmer ?
How do you check the syntax of a JCL without running it?
i need some shortcuts and tso commands can any on ehelp me in these ?
How to test thru JCL if any file(PS or VSAM) is empty or not. I do not want to use any COBOL prog or Ezytrieve and want to do using utility.
what is the difference between the JCLLIB and JOBLIB ,and where do we use it ?
What do you understand by the terms: joblib and steplib?
What is the difference between Sysin,Sysout,Sysdbout and Sysudump?
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?