what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?

Answers were Sorted based on User's Feedback



what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?..

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

what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?..

Answer / srk

symbolic param : which allow multiple users to specify their
own values to a paramaeters(specified as &paramname 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

Post New Answer

More JCL Interview Questions

I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?

0 Answers  


My JOB contains three steps. //STEP1 EXEC PGM=ABC //STEP2 EXEC PGM=DEF //STEP3 EXEC PGM=GHI My Question is 1) I want to execute second step only. How will do. 2) Soppose U consider above three steps are in PROC steps and I want execute the PROC second step only? How to execute the second step only. During exection time its creating any ABEND? Please let me know..........

2 Answers  


why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.

0 Answers  


How is the record format of an output dataset specified?

0 Answers  


Explain the function of dd disp parameter?

0 Answers  






In JCL I have 5 steps,I need to execute 1st,2nd and 5th steps only,can any one answer me please?

2 Answers   TCS,


shall we concordinate two different length dataset in to a new date set.

6 Answers  


when we use sysprint and sysout statements

3 Answers  


Hi, all suppose i have 5 steps (S1,S2,S3,S4,S5) what will happen if cond is true or false (which of the other steps get executed)? 1) //s3 exec pgm=abc,cond=(0,le) 2) //s3 exec pgm=abc,cond=(0,le,step2) 3) In the jobcord RESTART=step3,cond=(0,le) 4) can i code COND=TRUE in jobcard, if yes what will happen?

3 Answers   TCS, Tech Mahindra,


Explain about LMMFIND - find a library member

1 Answers  


What is 'S0C7' abend?

9 Answers  


What u mean by include statement in JCL ?

3 Answers  


Categories