I'm losing my ever-loving mind over this one.
I'm trying to output a list of local queues with their current depth and maximum depth. The following command basically does the job:
display qlocal(*) curdepth maxdepth
However, I'm getting all the SYSTEM.* queues and I don't want them in the list. Theoretically I can use the where( ) filter to do this, but it seems like this most useful function is just not possible because...
display qlocal(*) where(???? nl 'SYSTEM*') curdepth maxdepth
...what do I put for ???? I've tried all sorts including the seemingly obvious 'queue' but nothing works. Am I stuck with separately processing the output (a chore at the best of times due to its horrid formatting) to rid myself of these?