Author |
Message |
Topic: SQL server database |
Meera
Replies: 3
Views: 1942
|
Forum: Database Posted: Wed Jul 09, 2003 11:06 am Subject: SQL server database |
sure you can - if your site has MQ-Series and YOU do the leg-work. But, usually, no one in their right mind would do this; you may want to access both data from a VB/ADO app instead !! |
Topic: Omegamon. |
Meera
Replies: 3
Views: 3387
|
Forum: Database Posted: Wed Jul 09, 2003 11:03 am Subject: Omegamon. |
As suggested by Kolosu, probable cause is a buggsy-loop. You may want to share more detail abt the code - especially the commit-rollback logic and cursors (if any). |
Topic: Array initialisation in COBOL. |
Meera
Replies: 9
Views: 5746
|
Forum: Application Programming Posted: Tue Jul 01, 2003 11:16 am Subject: Array initialisation in COBOL. |
Why bother? rewrite your fields:
01 working-storage.
02 init-array.
03 num-1 pic 9.
03 alpha-1 pic x.
03 num-2 pic 9.
03 alpha-2 pic x.
03 num-3 pic 9.
03 alpha-3 pi ... |
Topic: Initialization of Host variables |
Meera
Replies: 1
Views: 3436
|
Forum: Database Posted: Fri Jun 27, 2003 9:37 am Subject: Initialization of Host variables |
What do you mean INITIALIZE? To spaces and zeros or something else?
COBOL gives you poerful intitialize statement at group level if you use replacing clause. If you want to initialize to specific val ... |
Topic: CICS Working Storage Issue |
Meera
Replies: 2
Views: 2907
|
Forum: CICS and Middleware Posted: Fri Jun 27, 2003 9:22 am Subject: CICS Working Storage Issue |
I am yet to run into w-s hogging storage! The usual scenerio is TSQ hogging storage. Check with tour SysSupport. If you R absolutely sure it is the w-s, then stop "calling" other programs - redesign t ... |
Topic: EIBRESP field not getting updated |
Meera
Replies: 1
Views: 3290
|
Forum: CICS and Middleware Posted: Fri Jun 27, 2003 9:14 am Subject: EIBRESP field not getting updated |
A mistake often made by new CICS programmers is the use/abuse of DFHCOMMARE and workingstorage - the former is under CICS control while the latter is specific to the particular instance(TransID+TermID ... |
Topic: Attribute byte from DFHBMSCA |
Meera
Replies: 3
Views: 4069
|
Forum: CICS and Middleware Posted: Fri Jun 27, 2003 8:35 am Subject: Attribute byte from DFHBMSCA |
goto www.ibm.com and search for document SC33-1170-03
It has a table in appendix (table 23) that gives you everything you want to know about attr byte. It is too detailed to put in a text format.
Go ... |
|