Search found 6 matches

by justaprogrammer
Fri Nov 24, 2006 4:33 pm
Forum: JCL
Topic: utility IKJEFT1B
Replies: 3
Views: 15859

If you would have search for this on google you might have already found this.8)

http://publibz.boulder.ibm.com/cgi-bin/ ... 0111125708
by justaprogrammer
Wed Nov 22, 2006 8:31 pm
Forum: JCL
Topic: ISPF question
Replies: 3
Views: 11234

Alongwith SD;ST , SD;DA will also give you what you are looking for.
by justaprogrammer
Wed Nov 22, 2006 6:56 pm
Forum: JCL
Topic: JCL
Replies: 3
Views: 11408

type TSO DEF GDG on the command line and hit enter. Now on the next screen it will ask for the GDG base name.give the GDG base name and again hit enter.Then it will ask for the GDG limit.Give a numeric value and then hit enter. You will have ur GDG base defined by this way in ISPF without using any ...
by justaprogrammer
Wed Nov 22, 2006 6:42 pm
Forum: JCL
Topic: test datase empty
Replies: 8
Views: 31691

You can also use IDCAMS for checking this. //FILEMPTY EXEC PGM=IDCAMS //FILEB DD DUMMY //SYSPRINT DD SYSOUT=* //SYSIN DD * REPRO IDS(input file) OFILE(FILEB) COUNT(1) /* This will give a RC = 12 if the file is empty. You can also use PRINT IDS(input file) COUNT(1&...
by justaprogrammer
Wed Nov 22, 2006 6:26 pm
Forum: JCL
Topic: Problem with INCLUDE
Replies: 4
Views: 12419

Rahul

In your member COMPTKEY give

Code: Select all

C ALL 70 85 P'=' ' ' 
on command line..save it and then retry your JCL.
by justaprogrammer
Wed Nov 22, 2006 5:31 pm
Forum: COBOL
Topic: COBOL Program performance tuning tips
Replies: 22
Views: 76921

If at all possible avoid doing a sort within a COBOL program. COBOL sorts are very inefficient. If you must do a sort in a COBOL program, specifying the FASTSRT compiler option may speed up the sorting process. I agree to what Madhu had adviced over here with a little variation. if you are using IN...