Answer Posted / muttaiah
There are two types of sort..
1) DFsort
2) Syncsort
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
I need exexution process for JCL programs
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 can a fb file convert to vb file using sort program?
what is the purpose of coding class parameter in job statement?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
How can the submitting users racf authority be overridden in a job stream?
In sms datasets, what is the function of the dd avgrec keyword?
What is the difference between run mode and addressing mode?
how can you check if a file is empty using jcl?
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK
Can an individual step be restricted from using all the jobs allowed cpu time?
Explain the function of //jcllib statement?
which utility is used to run a cobol-db2 program?
Explain the jcl exec statement?
How dummy is used in jcl?