Can we create VSAM file by using IEBGENER?
Answer Posted / sreen
You can create through IDCAMS utility
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
which utility is used to sort a file in jcl?
What happens if both JOBLIB & STEPLIB is specified ?
which parameter is use to declare the name of dataset in dd statement?
Name what parameter directs the output of the job log dataset?
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.
What is the difference between run mode and addressing mode?
How can values be passed from the job stream to an executable program?
WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99 VALUE 123.45. PROCEDURE DIVISION. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. compiler : IGYGR1080-S A "VALUE" clause literal was not compatible with the data category o subject data item. The "VALUE" clause was discarded. WORKING-STORAGE SECTION. 77 W-A PIC 9(3)V99 VALUE 23.75. 77 W-B PIC ZZ9V99. PROCEDURE DIVISION. MOVE 123.45 TO W-B. MOVE W-A TO W-B. DISPLAY W-B. STOP RUN. 2375
What is jcl in mainframe?
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
What parameter of the job statement is used to limit the cpu time consumed by the job?
how to do automated restart when a job abends?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?