Author |
Message
|
vicks_mq |
Posted: Sun May 20, 2018 1:03 pm Post subject: Fastest and Efficient way to browse messages through Local Q |
|
|
Disciple
Joined: 03 Oct 2017 Posts: 162
|
I am looking for the efficient and useful way to browse messages through Local Q, if I use MQ explorer, I can't filter messages out.
I want a way to browse messages where I can get the Particular MQMD parameter of a message.
Suppose I want to count hose messages who are going to expire in next 30 mins out of thousand of messages in that local queue, how can I do that?
or If I want to filter out messages which was put on a specific date or time period, then also how can I do that? |
|
Back to top |
|
 |
krypton |
Posted: Mon May 21, 2018 7:34 am Post subject: |
|
|
 Disciple
Joined: 14 Mar 2010 Posts: 186
|
QLoad and Q program can help to manage messages to some extent but I have no answer for what you are looking, maybe some of the expert in this forum can help you with that. _________________ Dreams are not something which you watch when you are asleep,it is something which doesn't let you sleep. |
|
Back to top |
|
 |
vicks_mq |
Posted: Mon May 21, 2018 12:45 pm Post subject: |
|
|
Disciple
Joined: 03 Oct 2017 Posts: 162
|
Thanks, but my requirement is more and need to cover the scenarios which I mentioned.
I wonder why IBM doesn't provide any utility for this, it should be incorporated in MQSC command. |
|
Back to top |
|
 |
gbaddeley |
Posted: Mon May 21, 2018 5:33 pm Post subject: Re: Fastest and Efficient way to browse messages through Loc |
|
|
 Jedi Knight
Joined: 25 Mar 2003 Posts: 2538 Location: Melbourne, Australia
|
vicks_mq wrote: |
I am looking for the efficient and useful way to browse messages through Local Q, if I use MQ explorer, I can't filter messages out.
I want a way to browse messages where I can get the Particular MQMD parameter of a message.
Suppose I want to count hose messages who are going to expire in next 30 mins out of thousand of messages in that local queue, how can I do that?
or If I want to filter out messages which was put on a specific date or time period, then also how can I do that? |
MQ installation includes a range of sample applications and source code. You can modify these to meet your requirements.
MQ Explorer is not designed to be an application messaging support tool, it doesn't have many capabilities to handle message data.
There are also IBM SupportPacs (eg. IH03 RFHUTIL) and 3rd party ISV products that provide message handling capabilities. ISVs can be receptive to requests to add useful new features that you desire. _________________ Glenn |
|
Back to top |
|
 |
vicks_mq |
Posted: Tue May 22, 2018 5:25 am Post subject: |
|
|
Disciple
Joined: 03 Oct 2017 Posts: 162
|
Quote: |
MQ installation includes a range of sample applications and source code. You can modify these to meet your requirements.
MQ Explorer is not designed to be an application messaging support tool, it doesn't have many capabilities to handle message data.
There are also IBM SupportPacs (eg. IH03 RFHUTIL) and 3rd party ISV products that provide message handling capabilities. ISVs can be receptive to requests to add useful new features that you desire. |
Hi, thank you for the information , my requirement is not to handle message data but instead more on "browsing" the queue for different messages based on conditions like message age, message length , user ID etc etc. |
|
Back to top |
|
 |
mvic |
Posted: Tue May 22, 2018 5:37 am Post subject: Re: Fastest and Efficient way to browse messages through Loc |
|
|
 Jedi
Joined: 09 Mar 2004 Posts: 2080
|
If your applications are using MQ properly they will not leave messages on queues for a long while.
Are your applications treating MQ like a database?
MQ moves things from A to B, and has limited options for looking at what you have (because in principle it is constantly changing).
A database stores state and gives you many ways of querying what you have. |
|
Back to top |
|
 |
|