Author |
Message |
Topic: Making System more effecient |
calspach
Replies: 1
Views: 1703
|
Forum: Data Management Posted: Wed Jul 19, 2006 4:17 pm Subject: Making System more effecient |
Well, the scheduler is obviously the first step. That will allow you to quit running the duplicates. Get everyone together and set up the schedule so somebody knows what everyone is doing.
As for ... |
Topic: File closing in cobol |
calspach
Replies: 7
Views: 4709
|
Forum: Application Programming Posted: Thu Jun 22, 2006 8:39 am Subject: File closing in cobol |
^^ That's what I would do too. |
Topic: How to keep CICS region up while batch is running?? |
calspach
Replies: 1
Views: 1656
|
Forum: CICS and Middleware Posted: Tue Jun 20, 2006 8:36 am Subject: How to keep CICS region up while batch is running?? |
They can't be simultaneously available for update for both batch and CICS. As long as CICS is only reading, you can update away in batch though. You could close the file for update, reopen for read ... |
Topic: OCCURS ..DEPENDING ON |
calspach
Replies: 9
Views: 4822
|
Forum: Application Programming Posted: Tue Jun 20, 2006 8:31 am Subject: OCCURS ..DEPENDING ON |
It's not supposed to be. I'd say you have a compiler option turned off that should be on. I wish I could tell you which one. But, what is most likely happening since you are getting the data is tha ... |
Topic: compare comp-3 field to SPACES/LOW-VALUES |
calspach
Replies: 4
Views: 10285
|
Forum: Application Programming Posted: Tue Jun 13, 2006 8:05 am Subject: compare comp-3 field to SPACES/LOW-VALUES |
Would it be safe to say that if they aren't numeric they need to be initialized?
If so, you can code
IF Z NUMERIC
CONTINUE
ELSE
MOVE 0 TO Z. |
|