Author |
Message
|
jim |
Posted: Sat May 24, 2014 4:58 am Post subject: dspmq command |
|
|
Voyager
Joined: 26 Nov 2013 Posts: 94
|
dspmq command display the qmgr in which order.  |
|
Back to top |
|
 |
exerk |
Posted: Sat May 24, 2014 5:25 am Post subject: |
|
|
 Jedi Council
Joined: 02 Nov 2006 Posts: 6339
|
In the order in which they're listed in the mqs.ini file - what's your problem? _________________ It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys. |
|
Back to top |
|
 |
MB Developer |
Posted: Mon May 26, 2014 9:19 pm Post subject: Re: dspmq command |
|
|
 Disciple
Joined: 03 Feb 2014 Posts: 179
|
jim wrote: |
dspmq command display the qmgr in which order.  |
Hi exerk,
It will display queue managers alphabetical order ... |
|
Back to top |
|
 |
hughson |
Posted: Mon May 26, 2014 11:37 pm Post subject: Re: dspmq command |
|
|
 Padawan
Joined: 09 May 2013 Posts: 1959 Location: Bay of Plenty, New Zealand
|
MB Developer wrote: |
It will display queue managers alphabetical order ... |
Is your problem that it is doing this? Or is your problem that it is not doing this? _________________ Morag Hughson @MoragHughson
IBM MQ Technical Education Specialist
Get your IBM MQ training here!
MQGem Software |
|
Back to top |
|
 |
MB Developer |
Posted: Tue May 27, 2014 12:49 am Post subject: Re: dspmq command |
|
|
 Disciple
Joined: 03 Feb 2014 Posts: 179
|
hughson wrote: |
MB Developer wrote: |
It will display queue managers alphabetical order ... |
Is your problem that it is doing this? Or is your problem that it is not doing this? |
Hi hughson,
I don't have any problem with that but
jim ask this question
dspmq command display the qmgr in which order.
that's why I will give reply...
Thanks & Regards,
Suresh |
|
Back to top |
|
 |
exerk |
Posted: Tue May 27, 2014 2:49 am Post subject: Re: dspmq command |
|
|
 Jedi Council
Joined: 02 Nov 2006 Posts: 6339
|
MB Developer wrote: |
It will display queue managers alphabetical order ... |
No, it won't - it will display them in their order of listing within the mqs.ini file, e.g.:
Code: |
QueueManager:
Name=CQM
Prefix=/var/mqm
Directory=CQM
InstallationName=Installation1
QueueManager:
Name=AQM
Prefix=/var/mqm
Directory=AQM
InstallationName=Installation1
QueueManager:
Name=DQM
Prefix=/var/mqm
Directory=DQM
InstallationName=Installation1
QueueManager:
Name=BQM
Prefix=/var/mqm
Directory=BQM
InstallationName=Installation1 |
Produces:
Code: |
QMNAME(CQM)
QMNAME(AQM)
QMNAME(DQM)
QMNAME(BQM) |
Whereas:
Code: |
QueueManager:
Name=AQM
Prefix=/var/mqm
Directory=AQM
InstallationName=Installation1
QueueManager:
Name=BQM
Prefix=/var/mqm
Directory=BQM
InstallationName=Installation1
QueueManager:
Name=CQM
Prefix=/var/mqm
Directory=CQM
InstallationName=Installation1
QueueManager:
Name=DQM
Prefix=/var/mqm
Directory=DQM
InstallationName=Installation1 |
Produces:
Code: |
QMNAME(AQM)
QMNAME(BQM)
QMNAME(CQM)
QMNAME(DQM) |
_________________ It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys. |
|
Back to top |
|
 |
MB Developer |
Posted: Tue May 27, 2014 4:53 am Post subject: Re: dspmq command |
|
|
 Disciple
Joined: 03 Feb 2014 Posts: 179
|
Hi exerk Sir,
Thanks for your information...... |
|
Back to top |
|
 |
|