How many types of libraries are there in JCL ?

Answer Posted / guest

Libraries are of three types.
1.Sytem Libraries: SUCH AS SYS1.LINKLIB
2.Private Libraries: SPECIFIED IN A JOBLIB OR STEPLIB DD
STATEMENTS.
3.Temporary Libraries: CREATED IN A PREVIOUS STEP OF THE JOB.

Is This Answer Correct ?    13 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to run batch program without jcl?

10088


i want to store 20 digits . how will u do it in cobol ?

862


What is the use of disp parameter?

653


when does a dataset go uncataloged?

840


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

1589






What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?

818


How can a fb file convert to vb file using sort program?

807


What is timing concept in mainframe?

1664


List the different jcl statements that are not permitted in the procedures?

642


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

1041


What are s0c1, s0c4, s0c5, s0c7 and socb?

707


What is catelog procedure and how many catelog procedure to use in one job?

7462


Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?

722


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.

1735


How would you understand error(execution phase)?

632