View previous topic :: View next topic |
Author |
Message |
Rajkannan Beginner
Joined: 02 Jun 2004 Posts: 64 Topics: 31
|
Posted: Thu Jul 15, 2004 11:28 am Post subject: Number of instance of a transaction |
|
|
Hi
Is there a way to know how many instance of a transaction at given point of time???
Thanks
Raj |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Thu Jul 15, 2004 12:34 pm Post subject: |
|
|
Raj kannan,
The Usecount from the output of CEMT inquire program should give you the desired results.
Check this link for detailed explanation of CEMT INQUIRE PROGRAM
Hope this helps...
Cheers
Kolusu _________________ Kolusu
www.linkedin.com/in/kolusu |
|
Back to top |
|
|
Mike Chantrey Intermediate
Joined: 10 Sep 2003 Posts: 234 Topics: 1 Location: Wansford
|
Posted: Fri Jul 16, 2004 8:37 am Post subject: |
|
|
Quote: |
Is there a way to know how many instance of a transaction at given point of time???
|
CEMT INQUIRE PROGRAM will only help if all instances of this transaction run the same program and only that program, but this will not necessaarily be the case.
If you want to know how many of transaction XXXX is running you need to look at the EXEC CICS INQUIRE TASK command in the 'CICS system programming reference'. This allows you to obtain a list of all current non-system task numbers and their corresponding transaction ids. You can then scan this list and count the occurences of transaction XXXX. |
|
Back to top |
|
|
warp5 Intermediate
Joined: 02 Dec 2002 Posts: 429 Topics: 18 Location: Germany
|
Posted: Sat Jul 17, 2004 9:29 am Post subject: |
|
|
You can also take a look at your CICS statistics - if you produce them. We have them produced daily just before we stop our CICS. They give you lots of information. |
|
Back to top |
|
|
|
|