Author |
Message
|
menonmq |
Posted: Thu Oct 07, 2010 10:56 pm Post subject: List out only user defined Local Q's |
|
|
 Newbie
Joined: 21 Jul 2009 Posts: 6
|
How to list user defined MQ queues, other than system defined queues.
I tried this:
DIS QL(*) WHERE (QUEUE NE SYSTEM.*)
But
Is there any other way to list only user defined queues?
Last edited by menonmq on Thu Oct 07, 2010 11:57 pm; edited 1 time in total |
|
Back to top |
|
 |
menonmq |
Posted: Thu Oct 07, 2010 11:11 pm Post subject: |
|
|
 Newbie
Joined: 21 Jul 2009 Posts: 6
|
|
Back to top |
|
 |
MQRAMESH2011 |
Posted: Thu Oct 07, 2010 11:15 pm Post subject: |
|
|
Newbie
Joined: 07 Oct 2010 Posts: 5
|
Try like this
DISPLAY QUEUE(MYOWN*)
 |
|
Back to top |
|
 |
bruce2359 |
Posted: Fri Oct 08, 2010 5:44 am Post subject: |
|
|
 Poobah
Joined: 05 Jan 2008 Posts: 9469 Location: US: west coast, almost. Otherwise, enroute.
|
Since the WMQ product comes with SYSTEM objects, all other objects are locally (user) defined.
So, what do you mean by 'user-defined'? _________________ I like deadlines. I like to wave as they pass by.
ב''ה
Lex Orandi, Lex Credendi, Lex Vivendi. As we Worship, So we Believe, So we Live. |
|
Back to top |
|
 |
fjb_saper |
Posted: Fri Oct 08, 2010 5:46 am Post subject: Re: List out only user defined Local Q's |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
menonmq wrote: |
How to list user defined MQ queues, other than system defined queues.
I tried this:
DIS QL(*) WHERE (QUEUE NE SYSTEM.*)
But
Is there any other way to list only user defined queues? |
This is a known feature. You will have to filter the information out down the road. You cannot filter on the parameter used in the command...(here the queue name). The filter is done by the parameter passed to the command
i.e.
dis ql(myqueue.*)
Have fun  _________________ MQ & Broker admin |
|
Back to top |
|
 |
menonmq |
Posted: Sun Oct 10, 2010 10:40 pm Post subject: Re: List out only user defined Local Q's |
|
|
 Newbie
Joined: 21 Jul 2009 Posts: 6
|
fjb_saper wrote: |
menonmq wrote: |
How to list user defined MQ queues, other than system defined queues.
I tried this:
DIS QL(*) WHERE (QUEUE NE SYSTEM.*)
But
Is there any other way to list only user defined queues? |
This is a known feature. You will have to filter the information out down the road. You cannot filter on the parameter used in the command...(here the queue name). The filter is done by the parameter passed to the command
i.e.
dis ql(myqueue.*)
Have fun  |
Thanks fjb_saper.  |
|
Back to top |
|
 |
zpat |
Posted: Sun Oct 10, 2010 11:41 pm Post subject: |
|
|
 Jedi Council
Joined: 19 May 2001 Posts: 5866 Location: UK
|
MO71 has the option to exclude system objects from the lists (including from exporting to MQSC format). |
|
Back to top |
|
 |
menonmq |
Posted: Sun Oct 10, 2010 11:57 pm Post subject: |
|
|
 Newbie
Joined: 21 Jul 2009 Posts: 6
|
zpat wrote: |
MO71 has the option to exclude system objects from the lists (including from exporting to MQSC format). |
Dear zpat, definitely I will give a try in MO71 and update. thanx |
|
Back to top |
|
 |
zpat |
Posted: Mon Oct 11, 2010 12:07 am Post subject: |
|
|
 Jedi Council
Joined: 19 May 2001 Posts: 5866 Location: UK
|
Use the context menu (right mouse button) on the list displays, for these options (there are many).
Last edited by zpat on Mon Oct 11, 2010 12:19 am; edited 1 time in total |
|
Back to top |
|
 |
menonmq |
Posted: Mon Oct 11, 2010 12:13 am Post subject: |
|
|
 Newbie
Joined: 21 Jul 2009 Posts: 6
|
zpat wrote: |
Use the context menu (right mouse button) on the list displays for these options (there are many). |
Yes. found it.  |
|
Back to top |
|
 |
mqjeff |
Posted: Mon Oct 11, 2010 12:23 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
Of course, MQ Explorer does this too - except for the exporting as mqsc bit.
But MS03 does that... |
|
Back to top |
|
 |
|