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 the parameter we cannot use in procedure?

0 Answers  


What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?

0 Answers   IBM,


what is use of dcb parameter in dd statement?

0 Answers   IBM,


what is instream data

2 Answers   EDS,


How to check empty file in jcl?

4 Answers   Infosys,


Explain dd statement in jcl?

0 Answers  


how to set dependancy for jobs?

4 Answers  


a dd statement has 2 types of parameters. Name them?

0 Answers  


Can you execute a PROC from another PROC?

8 Answers   Keane India Ltd,


What happens if both JOBLIB & STEPLIB is specified ?

0 Answers  


What is catelog procedure and how many catelog procedure to use in one job?

2 Answers   Infosys,


how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?

0 Answers   IBM,


Categories