Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the use of DUMMY statement in the JCL?
What is the use of DUMMY Utility in the JCL?

Answers were Sorted based on User's Feedback



What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / sukumar

The DUMMY statement will allow a Jcl program to run if a
data set does not exist.

Following example:
//JOB1 JOB NOTIFY=&SYSUT1
//STEP1 EXEC PGM=IEBGENER
//DD1 DD DSN=IASM12.CLASS.PS1,DISP=SHR
//DD2 DD DSN=ISAM12.CLASS.PS2,DISP=SHR
//SYSIN DD DUMMY
//*Here statements tells about no input data.

Correct me if i'm wrong...... okai

Is This Answer Correct ?    38 Yes 10 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / harsh kumar

The DUMMY parameter specifies that no device is to be
allocated to this DD statement and that no disposition
processing or I/O is to be
done.
One use of the DUMMY parameter is in testing a program.
When testing is finished and you want input or output
operations performed on the data set, replace the DD DUMMY
statement with a DD statement that fully defines the data
set.

Is This Answer Correct ?    24 Yes 4 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / sivakumar sekharannair

The use a a DD statement with a DUMMY parameter will allow
a program to run if a data set does not exist. In the cobol
program the OPEN will be successful, the first READ will
return an End-of-File return code and the close will be
successful.

Is This Answer Correct ?    20 Yes 5 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / sankar

i think for the jcl ,we should have to give input in sysin
dd ststement.if we dont give any input then by default we r
giving this as an input. Becos they need a kind of input
from that place. plz give suggesion for my answer.....

Is This Answer Correct ?    13 Yes 3 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / rahul tripathi

DUMMY statement is used in JCL to specify the MVS that no
device,disposition and I/O processing is to be done for the
dummy file. It is used in the DD statement in case we want
to refer to some file which does not exists or to refer to
a null file.

//SYSIN DD DUMMY

IS EQUIVALENT TO ........

//STEP01 DD DSN=NULLFILE

Is This Answer Correct ?    10 Yes 2 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / lovely

Specifies no space allocation & no disposition processing

Is This Answer Correct ?    13 Yes 6 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / r.pugazhendhi

Dummy specifies that no devices are to allocated to the file
reference by the DD name and that all i/o requests be bypassed

Is This Answer Correct ?    5 Yes 0 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / sai

dummy statement is used to suppressed command processing.

Is This Answer Correct ?    13 Yes 11 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / himanshu pratap

basically dummy is used to test the execution of program
and it is mention in the program only if there is no
control parameter in the jcl.It is mandatory to write dummy
in the case of iebgener utility.

Is This Answer Correct ?    3 Yes 1 No

What is the use of DUMMY statement in the JCL? What is the use of DUMMY Utility in the JCL?..

Answer / kumar

Dummy mainly used when u want check the program flow and not producing any output of it..

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More JCL Interview Questions

What are hierarchy levels in jcl?

0 Answers  


define cond parameter in jcl?

0 Answers   IBM,


How to pass values in jcl to cobol?

4 Answers   IBM, Infosys,


In jcl i have 255 steps. In 255 step i declared proc. In proc i have 20 steps this job is executable or not? why?

4 Answers  


When space is allocated for an output dataset, what units can be used?

0 Answers  


Can anyone tell me the syntax for printing two files at two different destinations in a single step?

3 Answers  


How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?

0 Answers  


IN-STREAM DATA NOT ALLOWED IN PROC how can come out from this problem

7 Answers  


Is Default for MSGCLASS = (1,1) ?

2 Answers   IBM,


How Can we see all generations of a GDG ?

3 Answers   Polaris,


What does IEBGENER do?

10 Answers   BirlaSoft,


hi,i have joined in mainframe course recently. ihave a doubt ragarding restart parameter.what is d use of it. and what is d syntax for it. any one give me d answer pls.

3 Answers  


Categories