WHAT IS DUMMY IN JCL? HOW TO USE IT?
CAN ANYBODY SEND PROGRAM ON THIS?
Answers were Sorted based on User's Feedback
Answer / iqru
DUMMY is used to signify end-of-file or dummy input.
when some dummy file meaning empty file needs to be passed
to the program use //ddname DD DUMMY
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / venkat
it is cheek the execution of the program with out involving
the files
// job1 job
//joblib dd dsn=loadlib,disp=shr
//step1 exec pgm=pgm1
//disk1 dd dummy
//disk2 dd nullfile
when dummy is specified for an input file it treats
that it is an empty file
if dummy is specified for output it nullify all the
parameters
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / surendran s
if the value has been get in instream then we have write an
dummy statment..
//SYSIN DD DUMMTY
| Is This Answer Correct ? | 2 Yes | 8 No |
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
what is DD statement is used in JCL?
When output dataset space is required, what quantity categories are used?
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
what is the general use of PARM? Give an explanation about the system defined parameters that could be passed through this PARM like XREF,LIST,LET,APOST,RENT etc..
I have two input files i/p1 name id-key flag date i/p 2 name id-key date if id-key matches in the both the files then it should write the output file from i/p1 with flag 'Y'. It should be done thru JCL sort card ,Please provide the info on this. ---Note : output file should have all records from i/p1 with proper Flag.
Explain about LMGET�read a logical record from a data set
How to ALTER the name of a GDG ?
Why we us SYSTSIN DD with IKJEFT01 (TSO Utility) to execute a COBOL DB2 program? Why can't we use SYSIN DD?
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
Why do you use a control card?
I have one GDG. Everyday One new version is being created.Now I want to split this created version in different files each having 1000 records. Here Problem is I don't know How many records will be there in new version of GDG? that's why I don't know How many Out files we need to use . Interesting??????????????