What is the job entry system used in your project? based on
what criteria the sequence of jobs are picked if priority
is not mentioned in the job card?
No Answer is Posted For this Question
Be the First to Post Answer
What is COND=ONLY ?
when can a job time-out occur? How to overcome that?
Can a job have only steplib and no joblib ?
Which COND paramter will u use to execute the step only if the previous step does not execute
What is jcl in mainframe?
What are the common jcl syntax errors you get? This is not abends?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
What is the difference between BLKSIZE and LRECL?
How can I write the joblog in the spool on normal end of a job step and direct the joblog to a dataset only if the step abends?
When we use conditional statement in JCL using if-then-else-endif, IF statement is true, the step is bypassed or executed?