Search found 2 matches

by kvenkat_b4u@yahoo.com
Wed Apr 26, 2006 9:03 am
Forum: JCL
Topic: Copy GDG to GDG (one to one).
Replies: 6
Views: 38589

GDG

HI, WE CAN COPY OLDER VERSION OF GDG TO NEWER VERSION BY USING SORT //STEP4 EXEC SORTD //SORTIN DD DSN=DEMO.TEST.GDG.G0001V00,DISP=SHR //SORTOUT DD DSN=DEMO.TEST.GDG(+1), // DISP=(NEW,CATLG,DELETE), // SPACE=(TRK,(1,1),RLSE), // DCB=(LRECL=80,BLKSIZE=800,RECFM=FB), // UNIT=SYSDA //SYSIN DD * SORT FI...
by kvenkat_b4u@yahoo.com
Mon Apr 24, 2006 5:39 pm
Forum: COBOL
Topic: EVALUATE ALSO
Replies: 8
Views: 15325

ALSO

hi Arrbee, if Condition1 AND Condition2 then even if the condition1 fails, Still it is going and checking the condition2!!!!! if Condition ALSO Condition2 then IF The condition1 fasil it won't check the condition2, i.e it simply ignore the codtition2!!!..What a difference i think it's enough ,,,stil...