what is the meaning of 'sysin dd dummy'
Answers were Sorted based on User's Feedback
Answer / arun
sysin dd *
it is used to pass the input statement called 'control pad'
| Is This Answer Correct ? | 3 Yes | 1 No |
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 |
How do you check the syntax of a JCL without running it?
At what stage, operator can change the class and priority of a submitted job?
What is maximum length of block size?
5 Answers Cap Gemini, Kanbay, TCS,
A STEP has more than 1 file as INPUT. And we have to put all these records int 1 output file. How to do ? //InputF DD DSN=ID.File1 DSN=ID.File2 DSN=ID.File3
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
Name the statement which can be used to send data to another mvs jes3 node?
I have an job having three job steps.Suppose i want to call a pgm in step2 and aproc in step3.How to write the code?
which utility is used to sort a file in jcl?
What is Uncatalog dataset? How can we access/use them?
how can we merge two input files from two different jobs into one output file ? Please ans any one ASAP?