Author |
Message
|
pnmraju |
Posted: Mon Nov 05, 2007 7:14 am Post subject: finding the transmission queues in a queue manager. |
|
|
Novice
Joined: 28 Jun 2007 Posts: 19
|
I am having a problem in finding the transmission queue's in a particular queue manager. could you please let me know the command to find the transmission Queue's in a particular queue manager in unix and as well as in windows. similarly how to find the alias queue managers for a particular queue manager. |
|
Back to top |
|
 |
JosephGramig |
Posted: Mon Nov 05, 2007 7:33 am Post subject: |
|
|
 Grand Master
Joined: 09 Feb 2006 Posts: 1244 Location: Gold Coast of Florida, USA
|
in V6:
dis ql(*) where(usage EQ XMITQ) _________________ Joseph
Administrator - IBM WebSphere MQ (WMQ) V6.0, IBM WebSphere Message Broker (WMB) V6.1 & V6.0
Solution Designer - WMQ V6.0
Solution Developer - WMB V6.1 & V6.0, WMQ V5.3 |
|
Back to top |
|
 |
Vitor |
Posted: Mon Nov 05, 2007 7:33 am Post subject: Re: finding the transmission queues in a queue manager. |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
pnmraju wrote: |
I am having a problem in finding the transmission queue's in a particular queue manager. could you please let me know the command to find the transmission Queue's in a particular queue manager in unix and as well as in windows. |
DISPLAY QLOCAL(*)
pnmraju wrote: |
similarly how to find the alias queue managers for a particular queue manager. |
DISPLAY QALIAS(*)
 _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
elvis_gn |
Posted: Mon Nov 05, 2007 7:41 am Post subject: Re: finding the transmission queues in a queue manager. |
|
|
 Padawan
Joined: 08 Oct 2004 Posts: 1905 Location: Dubai
|
Vitor wrote: |
pnmraju wrote: |
I am having a problem in finding the transmission queue's in a particular queue manager. could you please let me know the command to find the transmission Queue's in a particular queue manager in unix and as well as in windows. |
DISPLAY QLOCAL(*) |
Will display all local and transmission queues...JosephGramig's works...
Vitor wrote: |
pnmraju wrote: |
similarly how to find the alias queue managers for a particular queue manager. |
DISPLAY QALIAS(*)
 |
He wanted the alias QMs, doubt display qalias will give that
Regards. |
|
Back to top |
|
 |
Vitor |
Posted: Mon Nov 05, 2007 9:29 am Post subject: Re: finding the transmission queues in a queue manager. |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
elvis_gn wrote: |
He wanted the alias QMs, doubt display qalias will give that |
Ah - failure in the eye/brain interface....  _________________ Honesty is the best policy.
Insanity is the best defence.
Last edited by Vitor on Mon Nov 05, 2007 11:40 am; edited 1 time in total |
|
Back to top |
|
 |
Michael Dag |
Posted: Mon Nov 05, 2007 10:02 am Post subject: |
|
|
 Jedi Knight
Joined: 13 Jun 2002 Posts: 2607 Location: The Netherlands (Amsterdam)
|
dis qremote(*) where(RNAME EQ ' ')
shows any Qmgr Aliases present... including ofcourse the SYSTEM.DEFAULT.REMOTE.QUEUE _________________ Michael
MQSystems Facebook page |
|
Back to top |
|
 |
pnmraju |
Posted: Tue Nov 06, 2007 6:55 am Post subject: |
|
|
Novice
Joined: 28 Jun 2007 Posts: 19
|
Michael Dag wrote: |
dis qremote(*) where(RNAME EQ ' ')
shows any Qmgr Aliases present... including ofcourse the SYSTEM.DEFAULT.REMOTE.QUEUE |
while I was trying to execute the display queue(*) it is showing all the queues including xmitq's but my problem is there are lot of q's in the qmanager and I need to check for only transmission queue's and in unix it is crossing the page size and I am able to see only some queue managers. Please do also specify the command for the above two in version 5.3. I checked with the where in the query but it is not working in 5.3. Please advice. |
|
Back to top |
|
 |
jefflowrey |
Posted: Tue Nov 06, 2007 6:58 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
You can't do "where" in v5.3
So you're going to have to do something else to filter your results.
Like saving them to a text file and then filtering the text file using text searching tools. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
Vitor |
Posted: Tue Nov 06, 2007 6:58 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
pnmraju wrote: |
I checked with the where in the query but it is not working in 5.3. Please advice. |
The where clause is new for v6 _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
|