what is the meaning of 'sysin dd dummy'

Answers were Sorted based on User's Feedback



what is the meaning of 'sysin dd dummy'..

Answer / bhanu

It is use to test the program an empty file

Is This Answer Correct ?    11 Yes 1 No

what is the meaning of 'sysin dd dummy'..

Answer / arun

sysin dd *

it is used to pass the input statement called 'control pad'

Is This Answer Correct ?    3 Yes 1 No

what is the meaning of 'sysin dd dummy'..

Answer / deepak gairola

//sysin dd dumy :DUMMY has meaning as NULLFILE and is used
to suppress unused files. If you use it, it handles files
as non existing.
You can use it for example in IDCAMS with various input and
output files.
You have 20 input and 20 output files, but you only want to
use the 9th thru 13th input/output files without changing
the sysin instructions (REPRO).
So you set input/output file 1 thru 8 and 14 thru 20 to DD
DUMMY.
It works, try it.

Please go through the manual before posting

If you use it in a concatenated DD statement, be careful,
because it
identifies the EOF in the DD DUMMY, so it is the best way
to place it
at the end of a DD instruction.

All parameters used after a DD DUMMY, are ignored, this is
the difference between NULLFILE and DD DUMMY. NULLFILE
recognizes applied parameters.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More JCL Interview Questions

can we have more than one job in a single job card that is we are specifying only one 'job' statement in the jcl.

7 Answers   Accenture,


What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?

0 Answers  


I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one

0 Answers  


how to code instream data in procedure?

3 Answers  


I have a Symbolic Parameter which can have a value say 01 or 02 etc. Now consider i have another Symbolic parameters which is used to get 3 digit code of months (JAN, FEB, etc) but for that i need to check the first symbolic parameter's value and provide its corresponding month's name in the second symbolic parameter. Say IF sym1 = 01 then sym2='Jan' ENDIF etc... In JCL, IF condition is used for RC, ABEND purposes of a step etc. When i use Symbolic parameter in IF clause it is showing Error message. Is there a way to get the above result possible in JCL. If you could provide me with an example, i would understand it better.

0 Answers  






whats SOC7?

1 Answers   Patni,


WORKING-STORAGE SECTION. 1 GROUP-ITEM. 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50. 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP. PROCEDURE DIVISION. MOVE ZERO TO GROUP-ITEM. ADD 50 TO AMOUNT-1. DISPLAY AMOUNT-1. STOP RUN.

1 Answers  


can u explain gdg with example wht happens if we give limit,empty,noempty,scartch and no scartch

1 Answers   IBM,


How to identify in JCL that an input file is empty without reading it?

4 Answers   L&T,


How to submit multiple jobs. These jobs are members in PDS. The second job should run if the first job runs successfully and so on.

1 Answers  


Explain how can a stopped job be started again?

0 Answers  


Can we use DISP=SHR in output file in JCL

0 Answers  


Categories