Search found 5 matches

by chaat
Mon Feb 27, 2017 2:11 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: How to make a COBOL program wait?
Replies: 10
Views: 3098

Re: How to make a COBOL program wait?

There is also an LE version which does milliseconds for the delay interval. Check the manuals for the specifics.
by chaat
Sat Nov 21, 2015 9:43 am
Forum: IBM DFSort, ICETOOL, ICEMAN, ICEGENER.
Topic: SUM FIELDS=NONE in sort.
Replies: 7
Views: 4190

Re: SUM FIELDS=NONE in sort.

William,

if you are positive that the data is in sequence already, then you can use

MERGE FIELDS=(.....)
SUM FIELDS=NONE

this way you can avoid the overhead of sorting the data again.
by chaat
Wed Nov 18, 2015 12:33 pm
Forum: IBM DB2 and IMS DB/DC
Topic: Help in solving SQLCODE -144.
Replies: 4
Views: 807

Re: Help in solving SQLCODE -144.

I suspect that you have an overflow condition where the SQLDA area at the end of working storage has been overlaid. I would analyze the dump to check for a storage overflow condition.
by chaat
Wed Sep 16, 2015 3:30 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: BPXWDYN vs PUTENV.
Replies: 5
Views: 1208

Re: BPXWDYN vs PUTENV.

both do the job, it's a matter of your shop standards or if there is no standard, then your personal preference.

it's like asking which is better 6 donuts or a half dozen donuts
by chaat
Wed Sep 16, 2015 3:26 am
Forum: IBM COBOL, GnuCOBOL (OpenCOBOL), OOCobol.
Topic: Create PDS member using COBOL program dynamically.
Replies: 8
Views: 1747

Re: Create PDS member using COBOL program dynamically.

you could use dynamic allocation via BPXWDYN and create as many as you wish.

just remember that restart / recovery using pds members can be much more challenging than qsam files.

Go to advanced search