Author |
Message
|
lotusphilo |
Posted: Fri Aug 04, 2006 6:19 am Post subject: Copying Queue |
|
|
Voyager
Joined: 31 Mar 2004 Posts: 76
|
Is there an expedient process to copy a few hundred queue(s) and queue definitions from one z/OS Queue Managers to 3 or 4 different z/OS Queue Managers? |
|
Back to top |
|
 |
jefflowrey |
Posted: Fri Aug 04, 2006 6:23 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
Messages on queues?
Yes, CSQUTIL.
Queue Definitions?
Yes, SAVEQMGR from ms03. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
lotusphilo |
Posted: Fri Aug 04, 2006 6:29 am Post subject: |
|
|
Voyager
Joined: 31 Mar 2004 Posts: 76
|
Jeff, I believe that ms03 only works on UNIX and Windows and iSeries. Am I misunderstanding something? Oh and this is for v5.3.1 not v6. |
|
Back to top |
|
 |
jefflowrey |
Posted: Fri Aug 04, 2006 6:42 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
Hrm. I guess I owe Wayne some rum.
I'd thought he at least supported Z/OS v5.3 from a client connection, but I don't see any notes about sending string commands instead of PCF commands. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
lotusphilo |
Posted: Fri Aug 04, 2006 6:54 am Post subject: |
|
|
Voyager
Joined: 31 Mar 2004 Posts: 76
|
So, any suggestions on how to get that done a little quicker? |
|
Back to top |
|
 |
xxx |
Posted: Fri Aug 04, 2006 7:23 am Post subject: |
|
|
Centurion
Joined: 13 Oct 2003 Posts: 137
|
m071, it works fine on ZOS 5.3 , |
|
Back to top |
|
 |
lotusphilo |
Posted: Fri Aug 04, 2006 7:34 am Post subject: |
|
|
Voyager
Joined: 31 Mar 2004 Posts: 76
|
Acolyte, are you suggesting using the GUI that is in m071 to capture, save, edit and deploy to a different z/OS qmgr? |
|
Back to top |
|
 |
Toronto_MQ |
Posted: Fri Aug 04, 2006 8:52 am Post subject: |
|
|
 Master
Joined: 10 Jul 2002 Posts: 263 Location: read my name
|
You can use CSQUTIL with the COMMAND function...
//QDEFS123 EXEC PGM=CSQUTIL,PARM='XXXX'
//OUTPUT1 DD DISP=SHR,DSN=BLAH.MAKEDEF(BACKUP)
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
COMMAND DDNAME(CMDINP) MAKEDEF(OUTPUT1)
//CMDINP DD *
DISPLAY CHL(*) ALL
DISPLAY QL(*) ALL
DISPLAY QR(*) ALL
<etc....>
/*
//
This will produce a list of DEFINE commands in the output DS which you can xmit to the other systems.
Hope this helps -
Cheers
Steve |
|
Back to top |
|
 |
xxx |
Posted: Fri Aug 04, 2006 8:17 pm Post subject: |
|
|
Centurion
Joined: 13 Oct 2003 Posts: 137
|
are you suggesting using the GUI that is in m071 to capture, save, edit and deploy to a different z/OS qmgr?
Yep , I do it a lot of times, It is faster than csqutil |
|
Back to top |
|
 |
jefflowrey |
Posted: Sat Aug 05, 2006 4:27 am Post subject: |
|
|
Grand Poobah
Joined: 16 Oct 2002 Posts: 19981
|
Of course, if lotusphilo doesn't have the Client Attachment facility, it's a little trickier to use MO71. _________________ I am *not* the model of the modern major general. |
|
Back to top |
|
 |
fjb_saper |
Posted: Sat Aug 05, 2006 5:05 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
Why not go with mo72 or a default qmgr and runmqsc. The output format needs to be seriously edited but the result is usable...
But anyways if you are on zOS use CSQUTIL it will create you the input file for the define process.
On distributed platform MS03 will do fine. Remember to add the authorizations (amqoamd -s)
Enjoy  _________________ MQ & Broker admin |
|
Back to top |
|
 |
|