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 |
What do you feel makes a good program?
I have 15 flat files. each record in the files have the monthly salary for 12 months with the employee number. Now I want to concatenate the 15 files such that for the employee numbers that are common the o/p file should have only one record and the salaries should be concatenated to that record. How can we do it with JCL?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
Can I concatenate various datasets whose organization are different from each other. Lets say I want to cancatenate a PDS file, a PS file, a GDG file etc. Can You do that ?? If yes, how ? is there any separate Utility to do so ???
explain concatinating datasets?
i want apply mainframe devolper with 3+ but i dont have that much of knowledge what isthe solution to get that much of knoweldge?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
What is a JCL Command statement ?
Matching Logic in Jcl not in cobol.Could any one please answer this question
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
We have two PS files,want to compare those files and put the duplicate records in one file. Input file 1 contains(1,2,4,9,10) Input file 2 contains (1,4,5,11,12,14,16). Help me with jcl.
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above