Answer Posted / preeth
SPOOL = Simultaneous Peripheral Operations Online
The reading of input data streams and the writing of output
data streams on auxiliary storage devices, concurrently
with job execution, in a format convenient for later
processing or output operations.
| Is This Answer Correct ? | 26 Yes | 2 No |
Post New Answer View All Answers
How to do automated restart when a job abend?
What parameter of the job statement is used to limit the cpu time consumed by the job?
What is the use of symbol // in jcl?
Is there any command to check wether the ps file is in sorted order?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
Can we use DISP=SHR in output file in JCL
Brief description of inline procedure of jcl.
What are s0c1, s0c4, s0c5, s0c7 and socb?
What is the motivation behind coding class parameter in job statement?
What is the function of the dd mgmtclas keyword in sms datasets?
Explain the function of dd name parameter with a 2 part structure; audit.report?
How to pass data to a program that is coded in an exec statement?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
How can an in-stream dataset be terminated?