what is the control cards?
Answers were Sorted based on User's Feedback
Answer / deepak gairola
Cataloged procedures in JCL can not have instream data(we
can't Use SYSIN DD * statements), so the data needed to
pass to them is put into a Control Card.
Control Card is an element in a PDS.
Means:
The input that we need to give to a procedure like sort
fields..record feilds to be processed are generally put in
the pds member and this is specified in the jcl procedure
as
//ddname dd dsn=pdsname (member)
This member is called a control card
Similarly, you can also pass the data through the SYSIN
parameters.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / gaurav
control card is simply a dataset containg mostly one record
which is passed in the jcl.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vanz
It depends.
"Control cards" come in many flavors. . . There are control
cards for the sort, most utilities, and many application
programs.
| Is This Answer Correct ? | 0 Yes | 0 No |
when does a dataset go uncataloged?
Given a input file with duplicates how to remove the duplicate records from the file using JCL?
6 Answers CDS, Convergys, TCS,
is step name is compulsory in jcl ?
What does a disposition of (new,catlg,keep) for a dsn mean?
Explain COND used in JCL?
What is difference between Return Code, user completion code, Abend code and reason Code?
what is the difference between return code and maxcc?
A job has 150 steps i want to execute only 57th step
i want to restart frm step 2, previously i coded cond parameter on step2 wht happens at tht time ?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
As PARM can supply information to a program ? Can PARM be used to supply information to a cataloged or Inline Procedure also ?
Explain the function of a dd statement?