what is the control cards?

Answers were Sorted based on User's Feedback



what is the control cards?..

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

what is the control cards?..

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

what is the control cards?..

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

Post New Answer

More JCL Interview Questions

What do you feel makes a good program?

1 Answers  


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?

1 Answers  


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

0 Answers  


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 ???

4 Answers  


explain concatinating datasets?

1 Answers  






i want apply mainframe devolper with 3+ but i dont have that much of knowledge what isthe solution to get that much of knoweldge?

1 Answers  


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

0 Answers  


What is a JCL Command statement ?

1 Answers   IBM,


Matching Logic in Jcl not in cobol.Could any one please answer this question

0 Answers  


What are the parameter we cannot use in procedure? How many instream we can write in single jcl?

0 Answers  


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.

6 Answers  


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

1 Answers  


Categories