how to allocate a dynamic dataset in jcl ?
Answer Posted / vinayak
mod in disp is used to allocate dynamic ds if they don't
exist else just append data in the end
Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
what is the purpose of coding class parameter in job statement?
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
How do you access an uncatalogued dataset in a jcl?
I need exexution process for JCL programs
How can values be passed from the job stream to an executable program?
Immediate Job opening for mainframe professionals in Keane Bangalore. Please find the below details: Organization: Keane India Location: Bangalore Skill: COBOL, JCL,VSAM,DB2,CICS,IMS,REXX,CLIST Exp: 1 to 4 years only Employment Type: Permenant Employee Note: If you have attended keane interview in past 6 months please ignore this job opening. Please respond to email id keanemfjob@gmail.com OR keanemfjob@yahoo.in with your latest resume and following details, We will contact you within 24 hours: Total IT Exp: Exp in Mainframe: Current CTC: Expected CTC: Notice Period:
State the uses of syspring, sysin, sort fields, sum fields and dummy.
Can we use DISP=SHR in output file in JCL
How would you understand error(execution phase)?
what is the difference between JES3 and JES2?
what is DSN parameter and DISP parameter is used for?
what is the use of IEBGENER utility?
whats the diff bw the evaluate also and and?
Is it possible to left uncode disp?
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