Author |
Message |
Topic: CICS COMMAND FOR VSAM CHECK?? |
RMi
Replies: 7
Views: 5099
|
Forum: CICS and Middleware Posted: Thu Jun 05, 2008 7:47 am Subject: CICS COMMAND FOR VSAM CHECK?? |
Visu,
You can OPEN the file in the CICS program at the beginning and CLOSE it at the end so that the file will be open in CICS only when the program runs.
exec cics set
fil ... |
Topic: CICS COMMAND FOR VSAM CHECK?? |
RMi
Replies: 7
Views: 5099
|
Forum: CICS and Middleware Posted: Thu Jun 05, 2008 7:45 am Subject: CICS COMMAND FOR VSAM CHECK?? |
Visu,
You can OPEN the file in the CICS program at the beginning and CLOSE it at the end so that the file will be open in CICS only when the program runs.
exec cics set
fil ... |
Topic: locking of the table in cics program while reading table. |
RMi
Replies: 8
Views: 3649
|
Forum: Database Posted: Mon Jun 02, 2008 5:53 am Subject: locking of the table in cics program while reading table. |
Eshwar,
I have a question here on the ENQ. Does ENQ work across CICS regions? You stated that your concern is to avoid two different CICS regions getting the same value through the MAX function. |
Topic: Question regarding Collection IDs |
RMi
Replies: 6
Views: 2535
|
Forum: Database Posted: Wed Apr 02, 2008 7:55 am Subject: Question regarding Collection IDs |
You have store the parameter some where you can access from CICS. It could be
1) A VSAM file
2) In a DB2 table belonging to the default colletion ID (In your case it can be group1)
3) Hardcode i ... |
Topic: CICS Transactions |
RMi
Replies: 2
Views: 1566
|
Forum: CICS and Middleware Posted: Wed Apr 02, 2008 5:26 am Subject: CICS Transactions |
You may see how many times a program is invoked from the following command.
CEMT I PROG(name)
The USE clause will tell you how many time the program is invoked after the CICS region is brought ... |
Topic: DB2 Z-os 8.1 - CUrrent Collection |
RMi
Replies: 1
Views: 1420
|
Forum: Database Posted: Wed Apr 02, 2008 5:08 am Subject: DB2 Z-os 8.1 - CUrrent Collection |
Try this.
EXEC SQL
SELECT CURRENT PACKAGESET
FROM SYSIBM.SYSDUMMY1
INTO :WS-PACKAGESET
END-EXEC.
77 WS-PACKAGESET PIC X(18 ).
Regards, |
Topic: Question regarding Collection IDs |
RMi
Replies: 6
Views: 2535
|
Forum: Database Posted: Wed Apr 02, 2008 4:03 am Subject: Question regarding Collection IDs |
Hello Edward,
As Christian said, you will have to go for CURRENT PACKAGESET if you have only one plan for both the groups. I would say that it is better to have a wrapper program for all your batch ... |
Topic: DB2 Upgrade - V8 |
RMi
Replies: 8
Views: 6564
|
Forum: Database Posted: Mon Jan 07, 2008 6:41 am Subject: DB2 Upgrade - V8 |
we have been asked to find out a list of DB2 tables that currently have these symbols so that would find the impact and take necessary action
Are you asked to find out the DB2 tables that use t ... |
Topic: Perfromace problem |
RMi
Replies: 6
Views: 2325
|
Forum: Database Posted: Wed Oct 31, 2007 7:32 am Subject: Perfromace problem |
Satyender,
Since you said that the jobs used to take only 2 hours previously and now it takes 7 hours, I guess that there could be some new jobs introduced which are accessing the DB2 tables at the ... |
|