Re: pipe question

2007-07-27 Thread David Boyes
http://www.princeton.edu/~melinda Also contains many useful facts about the square of the hypotenuse, and birds. -- db -Original Message- From: The IBM z/VM Operating System on behalf of Lionel B. Dyck Sent: Fri 7/27/2007 4:17 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: pipe question

Re: EUDSRV002E question

2007-07-27 Thread Alan Altmark
On Friday, 07/27/2007 at 04:53 EDT, Mike Walter <[EMAIL PROTECTED]> wrote: > I thought that EUD looked familiar as being DMS/CMS (5684-113 ) from my days of > yore -- e.g. from before 1985! > But it doesn't show up when searching at: http: > //www-03.ibm.com/servers/eserver/zseries/zos/bkserv/

Re: z/VM 5.3 RSU 0701 PSP Bucket - How To Find?

2007-07-27 Thread Alan Altmark
On Thursday, 07/26/2007 at 01:15 EDT, Michael Coffin <[EMAIL PROTECTED]> wrote: > Do the PSP bucket exist in one place on IBMLINK these days and/or is there a > unique search term I can use to search for the z/VM 5.3 RSU 0701 PSP bucket? The subset name is 0701RSU. If you search for it,

Re: EUDSRV002E question - disregard earlier email

2007-07-27 Thread Mike Walter
I thought that EUD looked familiar as being DMS/CMS (5684-113 ) from my days of yore -- e.g. from before 1985! But it doesn't show up when searching at: http://www-03.ibm.com/servers/eserver/zseries/zos/bkserv/lookat/ It does show up at on the PDF file on "VM Licensed Products Migration Matrix"

Re: EUDSRV002E question - disregard earlier email

2007-07-27 Thread Alan Altmark
On Friday, 07/27/2007 at 04:08 EDT, [EMAIL PROTECTED] wrote: > I found out what was causing the EUDSRV002E message. But still don't know > where to look up the error message. Wow. That's a DMS/CMS message that means the device you are using is not a 3270. E.g. you have a linemode telnet s

Re: pipe question

2007-07-27 Thread Marty Zimelis
There's a treasure trove (including that paper) at http://vm.marist.edu/~pipeline Marty _ From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Lionel B. Dyck Sent: Friday, July 27, 2007 4:18 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: pipe que

Re: pipe question

2007-07-27 Thread Schuh, Richard
Google "Melinda Varian" Regards, Richard Schuh From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Lionel B. Dyck Sent: Friday, July 27, 2007 1:18 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: pipe question Where might one find t

Re: pipe question

2007-07-27 Thread Lionel B. Dyck
Where might one find this august publication? I've tried google with no joy :( Thanks in advance Lionel B. Dyck, Consultant/Specialist Enterprise Platform Services, Mainframe Engineering KP-IT Enterprise Engineering, Client and Platform Engineering Services (CAPES) 925-926-5332 (8-473-5332)

EUDSRV002E question - disregard earlier email

2007-07-27 Thread Stephen . Gentry
I found out what was causing the EUDSRV002E message. But still don't know where to look up the error message. Steve

EUDSRV002E error code

2007-07-27 Thread Stephen . Gentry
Does anyone know what this error is from? EUDSRV002E Thanks, Steve

Re: pipe question

2007-07-27 Thread Feller, Paul
I created this exec because I wanted the output of query names to be sorted. Plus I sometimes wanted to limit what I was seeing. I works for me. SAY SAY 'Date..' DATE() ' Time..' TIME('N') Parse upper arg JOBNME

Re: pipe question

2007-07-27 Thread David Boyes
I like it - this pipe 'thingy' has lots of capability and lots for me to learn. "The Force is strong in this one." Check out Melinda Varian's paper "Plumbing the Internet" if you want to see an example of Pipes making *really* killer stuff happen.

Re: pipe question

2007-07-27 Thread Michael Coffin
Try this: PIPE CP QUERY NAMES | SPLIT AT /,/ | STRIP | SPECS W1 | CONSOLE You'll have a display of all users, each a single "record" that you can also do accurate "FIND"s against. PS: There is no "Q" command, "Q" is an abbreviation for "QUERY". It's good form to always spell out the full co

Re: pipe question

2007-07-27 Thread Schuh, Richard
Try with no space following ESA. You also need to split the response lines. Be sure that the string is comma + space pipe cms q n | split string /, / |find ESA| console Regards, Richard Schuh From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTE

Re: pipe question

2007-07-27 Thread Lionel B. Dyck
I like it - this pipe 'thingy' has lots of capability and lots for me to learn. Thanks Lionel B. Dyck, Consultant/Specialist Enterprise Platform Services, Mainframe Engineering KP-IT Enterprise Engineering, Client and Platform Engineering Services (CAPES) 925-926-5332 (8-473-5332) | E-Mail:

Re: pipe question

2007-07-27 Thread RPN01
That will only find ESA if it occurs at the front of the line. You¹ll only be looking at one in four userids. -- .~.Robert P. Nix Mayo Foundation /V\RO-OE-5-55 200 First Street SW / ( ) \ 507-284-0844 Rochester, MN 55905 ^^-^^ - "In theory

Re: pipe question

2007-07-27 Thread Lionel B. Dyck
I found my answer I had pipe cms q n | find ESA | console I should have coded: pipe cp q n | find ESA | console Thanks Lionel B. Dyck, Consultant/Specialist Enterprise Platform Services, Mainframe Engineering KP-IT Enterprise Engineering, Client and Platform Engineering Services (CAPES) 9

Re: pipe question

2007-07-27 Thread RPN01
Find searches for things at the beginning of a record. Locate searches anywhere within a record. Given that you didn¹t do a split to put the userids on separate lines, I¹d think that ³pipe cms q n | locate /ESA/ | console² would work better. Also, q n is a CP command, not a CMS, so actually, you¹d

Re: pipe question

2007-07-27 Thread Schuh, Richard
Try with no space following ESA. pipe cms q n | find ESA| console Regards, Richard Schuh From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of Lionel B. Dyck Sent: Friday, July 27, 2007 11:11 AM To: IBMVM@LISTSERV.UARK.EDU Subject

pipe question

2007-07-27 Thread Lionel B. Dyck
I'm learning pipes in cms and am trying to issue a 'q n' command and filter it to only display selected names. I'm trying this with no success - can someone educate me on what I'm doing wrong: pipe cms q n | find ESA | console Thanks Lionel B. Dyck, Consultant/Specialist Enterprise Platform

Re: dynamically changing what DNS I talk to.

2007-07-27 Thread David Boyes
> Or alternatively make TCPIP DATA point to a local cache-only DNS and > point that to the proper DNS to resolve (although you normally would > not need to change that but let it find working DNS itself). I would > not use the VM TCP/IP DNS anymore for this - running bind on Linux > might be wiser

Re: dynamically changing what DNS I talk to.

2007-07-27 Thread Adam Thornton
On Jul 27, 2007, at 12:13 PM, Rob van der Heij wrote: On 7/27/07, Alan Altmark <[EMAIL PROTECTED]> wrote: Sort of. If you keep a copy of TCPIP DATA in SFS accessed ahead of the 592 disk, you can update it on the fly. YMMV. Or alternatively make TCPIP DATA point to a local cache-only DNS

Re: dynamically changing what DNS I talk to.

2007-07-27 Thread Rob van der Heij
On 7/27/07, Alan Altmark <[EMAIL PROTECTED]> wrote: > Sort of. If you keep a copy of TCPIP DATA in SFS accessed ahead of the > 592 disk, you can update it on the fly. YMMV. Or alternatively make TCPIP DATA point to a local cache-only DNS and point that to the proper DNS to resolve (although yo

Re: IBM Clocks was: Re: Way OT: One Room Schools

2007-07-27 Thread Feller, Paul
Here it is http://www-03.ibm.com/ibm/history/exhibits/cc/cc_intro.html Paul Feller AIT Mainframe Technical Support [EMAIL PROTECTED] (319)-355-7824 -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of David Boyes Sent: Friday, July 27, 200

Re: dynamically changing what DNS I talk to.

2007-07-27 Thread Alan Altmark
On Friday, 07/27/2007 at 10:37 EDT, [EMAIL PROTECTED] wrote: > Is there a way in TCPIP, on VM, to dynamically change what DNS ip addr. VM > points to? Sort of. If you keep a copy of TCPIP DATA in SFS accessed ahead of the 592 disk, you can update it on the fly. YMMV. > I've tried the NETS

Re: IBM Clocks was: Re: Way OT: One Room Schools

2007-07-27 Thread David Boyes
> But what if, we decided to make the IBM clocks functional again. > Is there a documentation source, or other info on how these things work? The URL on IBM clocks someone posted earlier in this thread has very detailed maintenance docs on how the master clocks function. It's basically a pulse gen

Re: 530SPL and 530PAG

2007-07-27 Thread Schuh, Richard
If you have VSSI's VTAPE product, you may be closer to that day than you realize. Regards, Richard Schuh -Original Message- From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On Behalf Of RPN01 Sent: Thursday, July 26, 2007 7:10 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: 53

Re: Schedule question.

2007-07-27 Thread Stephen . Gentry
Thanks, problem has been solved. I have the catalog set for 0 days retention. So at midnight it got purged and I readded the job this morning. Steve "Demeritt, Yvonne" <[EMAIL PROTECTED]> Sent by: The IBM z/VM Operating System 07/27/2007 10:45 AM Please respond to The IBM z/VM Operating Sy

Re: Schedule question.

2007-07-27 Thread Bill Munson
Yvonne good to see you post an answer here, you shouldn't let J.R. hog all the answers. ;>) Bill Munson VM System Programmer Office of Information Technology State of New Jersey (609) 984-4065 President MVMUA http://www.marist.edu/~mvmua Demeritt, Yvonne wrote: Steve, If you have a backup o

Re: Schedule question.

2007-07-27 Thread Demeritt, Yvonne
Steve, If you have a backup of the VMSCHED IRBDB file from VMSCHED's 1B0 you can get the request from there and append it to the current IRBDB. VM:Schedule will need to be recycled to update the current VMSCHED IRBDB and for it to pick up that request. Depending on when the backup was taken, VM:Sc

IBM Clocks was: Re: Way OT: One Room Schools

2007-07-27 Thread Tom Duerbusch
Speaking of IBM clocks... In my neck of the woods, we have a new school for the last few years, "The Soulard School". It first started as Pre-K and K. Now it is expanding a grade a year. Anyway, it bought a surplus school building from the City of St. Louis Public School district. And it

dynamically changing what DNS I talk to.

2007-07-27 Thread Stephen . Gentry
Is there a way in TCPIP, on VM, to dynamically change what DNS ip addr. VM points to? I've tried the NETSTAT OBEYFILE but it doesn't like the record types in the TCPIP DATA file. Thanks Steve

Re: RSCS Level

2007-07-27 Thread Bill Munson
Alan, I have in my notes that to get the RSU for RSCS 3.2.0 I order UV99320. good luck Bill Munson VM System Programmer Office of Information Technology State of New Jersey (609) 984-4065 President MVMUA http://www.marist.edu/~mvmua Alan Ackerman wrote: According to VM Products Serviced via

Re: Using ADRDSSU To Move VM Volumes

2007-07-27 Thread Thomas Kern
Larry beat me to it, but ADMIN and CPVOLUME are both required. We had various failures until we got both into the command. /Tom Kern --- "Macioce, Larry" <[EMAIL PROTECTED]> wrote: > Here is our command to dump VM volumes: > > DUMP TRACKS(0,0,3338,14) INDDNAME(DASD) OUTDDNAME(TAPE) ADMIN - > CP

Re: z/vm 5.1 to 5.3 question

2007-07-27 Thread Phil Smith III
Anne Crabtree <[EMAIL PROTECTED]> wrote: >yup, when I released it, it said "update inhibited" or something >similar. guess i worried for no reason. Apologies if someone else said this and I missed it: you can ATTACH it R/O: attach 1234 someuser r/o and thus avoid the error. ...phsiii

Re: Using ADRDSSU To Move VM Volumes

2007-07-27 Thread Macioce, Larry
Here is our command to dump VM volumes: DUMP TRACKS(0,0,3338,14) INDDNAME(DASD) OUTDDNAME(TAPE) ADMIN - CPVOLUME CANCELERROR I think you are looking for admin or cpvolume. Good luck ..hope this helps Mace

Re: RSCS Level

2007-07-27 Thread Les Geer (607-429-3580)
>According to VM Products Serviced via -VM/RSU- or -VM/ESO- 08 July > 1999 > >: > > PTF#DESCRIPTION V.R.MUPGRADE SUBSET-Lvl > --- --- - -- > UV99320 RSCS NETWORK BAS

Re: Way OT: One Room Schools

2007-07-27 Thread Fran Hensler
Alan - Rooster Rock is an interesting name. Do you know the reason for the name. I went to Flat Rock School which was named for obvious reasons. Flat rocks are under the water of Slippery Rock Creek and they have moss on them which makes them slippery. The town of Slippery Rock got its name

Re: Using ADRDSSU To Move VM Volumes

2007-07-27 Thread Kris Buelens
Don't forget to make your old volumes invisible when you IPL the copied VM system -- Kris Buelens, IBM Belgium, VM customer support 2007/7/27, Thomas Kern <[EMAIL PROTECTED]>: > > I know that ADRDSSU can dump and restore VM volumes. We used this for > Disaster > Recovery in the past. If ther