Test for Valid Whole Number

2009-05-06 Thread James Stracka (DHL US)
What I need is a test that what is entered only contains the digits 0123456789. Anybody have a nice quick way to test for a valid whole number between 1 and 9? Testing for values 1 and 9 are immaterial to this question and are already tested. I thought DATATYPE(number,W) would do it

Re: Test for Valid Whole Number

2009-05-06 Thread James Stracka (DHL US)
then it is good Else it is bad Regards, Richard Schuh -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Wednesday, May 06, 2009 10:37 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Test for Valid Whole

Re: Shutdown REIPL

2009-05-01 Thread James Stracka (DHL US)
Having done lots of SHUTDOWN REIPL with a new CPLOAD MODULE, I highly doubt that is the cause. Are you sure they are not doing: SHUTDOWN RIPL ucb I have seen this on some CNR tests because you are IPLing using a different volume where the checkpoint area is on a different area of the volume.

Re: Shutdown REIPL

2009-05-01 Thread James Stracka (DHL US)
: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Friday, May 01, 2009 2:43 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: [IBMVM] Shutdown REIPL Having done lots of SHUTDOWN REIPL with a new CPLOAD MODULE, I highly doubt that is the cause. Are you

Re: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed?

2009-04-30 Thread James Stracka (DHL US)
Bob, Of more interest will be how do you erase those files? You will have to manually issue a few ERASE commands before doing LISTFILE DUMMY * A (E to make room for the CMS EXEC file. You might be able to issue ACCESS 191 A (ERASE but you had better have a backup of the other files on that

How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed?

2009-04-29 Thread James Stracka (DHL US)
We have a minidisk with 152715 files on it and another with 126996 files. Since the FAT is below the line, we cannot access both of these minidisks concurrently. DMSACP109S Virtual storage capacity exceeded Given that the S and Y disks as well as CMS take storage below 16M, does anybody

Re: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed?

2009-04-29 Thread James Stracka (DHL US)
Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Wednesday, April 29, 2009 11:36 AM To: IBMVM@LISTSERV.UARK.EDU Subject: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed? We have a minidisk with 152715 files on it and another with 126996

Re: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed?

2009-04-29 Thread James Stracka (DHL US)
accessing the directories, or by using subdirectories to limit the number of files accessed. Regards, Richard Schuh -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Wednesday, April 29, 2009 8:59 AM

Re: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed?

2009-04-29 Thread James Stracka (DHL US)
be ACCESSed? How about using something like VMARC to zip files 1 week old into weekly archives on the same minidisk that are easily expanded when needed? On 4/29/09 12:44 PM, James Stracka (DHL US) james.stra...@dhl.com wrote: This application puts about 10,000 files a day on its minidisk

Re: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed?

2009-04-29 Thread James Stracka (DHL US)
Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Wednesday, April 29, 2009 9:44 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed? This application puts

Re: Using PIPE to SUM a Column

2009-04-29 Thread James Stracka (DHL US)
TABULATE that will do exactly what you want. -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Wednesday, April 29, 2009 4:05 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Using PIPE to SUM a Column I have a file

Re: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed?

2009-04-29 Thread James Stracka (DHL US)
: How Many Files Can Be on a Minidisk Before It Cannot be ACCESSed? On Wed, Apr 29, 2009 at 6:44 PM, James Stracka (DHL US) james.stra...@dhl.com wrote: This application puts about 10,000 files a day on its minidisk.  The application owner wants to keep a month's worth of data online.  Given 64

Re: WAKEUP Order of Processing

2009-04-23 Thread James Stracka (DHL US)
subroutine basically issues 'PIPE CP Q RDR *!stem rdrfiles.' do i=1 to rdrfiles.0 Otherwise: test it Code a CP SLEEP in the RDR file handler then send a file and an SMSG and see what WAKEUP calles first 2009/4/22 James Stracka (DHL US) james.stra...@dhl.com We have an EXEC

Re: Attaching a real scsi device to a guest

2009-04-23 Thread James Stracka (DHL US)
I always say to myself we are defining Virtual devices so the first UCB is the virtual one on a DEDICATE, just as it is on an MDISK, GRAF or SPECIAL. Then IBM allows LINK which is backwards, but we all know that one! And, both UCBs are virtual, duh. It might have been helpful if between the

Re: adding more PAGE volumes

2009-04-22 Thread James Stracka (DHL US)
/**/ /* CP_Owned Volume Statements */ /**/ /* To add a CP_Owned DASD on the fly do: */ /*

WAKEUP Order of Processing

2009-04-22 Thread James Stracka (DHL US)
We have an EXEC that has within it: 'WAKEUP (SMSG RDR QUIET' According to HELP WAKEUP: Seven WAKEUP options cause data to be stacked: EXT, FILE, IO, IUCVMSG, SMSG, TIME, and VMCF. WAKEUP stacks the data in the following order regardless of the order the options are specified when you invoke

Re: WAKEUP Order of Processing

2009-04-22 Thread James Stracka (DHL US)
Thank you. -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Alan Altmark Sent: Wednesday, April 22, 2009 1:07 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: WAKEUP Order of Processing On Wednesday, 04/22/2009 at 11:49 EDT, James Stracka

Re: How to update the second Dirmaint

2009-04-20 Thread James Stracka (DHL US)
Kris, Did IBM change ISF? I thought PVM was used to keep the directories in sync? It has been years since I used ISF so my memory may be incorrect. Jim -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Kris Buelens Sent: Monday,

Re: Problems with IPLing a SECOND LEVEL z/VM 5.3

2009-04-09 Thread James Stracka (DHL US)
Is not Amdahl spelled in all lower case? -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Schuh, Richard Sent: Thursday, April 09, 2009 2:49 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: Problems with IPLing a SECOND LEVEL z/VM 5.3 The

Re: Problem with PEEK Command - update

2009-04-06 Thread James Stracka (DHL US)
that contains queue 'PF4 DISCARD' Is it bad having to hit two keys to **discard** something? With today's response times? 2009/4/3 James Stracka (DHL US) james.stra...@dhl.com Ed and Kris, I am told this is a vanilla z/VM 5.2.0 system. The only thing changed is DMSNGP and ACF2/VM. And from

Re: Problem with PEEK Command - update

2009-04-03 Thread James Stracka (DHL US)
Is it just this location or do others have this problem? I issue PEEK to look at a file in the READER. At the bottom of the screen is: 1= Help 2= Add line 3= Quit 4= Tab 5= Clocate6= ?/Change 7= Backward 8= Forward 9= Receive 10= Rgtleft 11= Spltjoin 12= Cursor I

Re: Problem with PEEK Command - update

2009-04-03 Thread James Stracka (DHL US)
? Ed Martin Aultman Health Foundation 330-363-5050 ext 35050 -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Friday, April 03, 2009 4:28 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re

Re: Problem with PEEK Command - update

2009-04-03 Thread James Stracka (DHL US)
Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Friday, April 03, 2009 4:28 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: Problem with PEEK Command - update Is it just this location or do others have this problem? I

Re: Problem using the PEEK Command

2009-04-02 Thread James Stracka (DHL US)
Do you have a private copy of PROFPEEK XEDIT? From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Raymond Noal Sent: Thursday, April 02, 2009 2:21 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Problem using the PEEK Command Dear

Re: look at service machine cons log

2009-03-30 Thread James Stracka (DHL US)
From a Class C machine issue: SEND CP service_machine_id CP SPOOL CONSOLE CLOSE your_id Then PEEK the file with FOR * unless you have SHOW. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of joseph.bei...@frit.frb.org Sent:

Re: VM 5.4 Maintenance

2009-03-27 Thread James Stracka (DHL US)
Sound like UM32520 is a PREREQ for UM32620. You need to order UM32620 and do a VMFREC for it. -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Wandschneider, Scott Sent: Friday, March 27, 2009 2:59 PM To: IBMVM@LISTSERV.UARK.EDU

Re: z/VM 5.3 maintenance question

2009-03-26 Thread James Stracka (DHL US)
Yes because it has been superceeded by UM32571. You may not see it in the $APPLIST file. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Daniel Allen Sent: Thursday, March 26, 2009 1:48 PM To: IBMVM@LISTSERV.UARK.EDU Subject:

Re: RSCS Query

2009-03-23 Thread James Stracka (DHL US)
Scott, Try this: /* REXX */ address COMMAND CP SET MSG IUCV PIPE (ENDCHAR ?) STARMSG *MSG CP SMSG RSCS QUERY LINKS , | specs 17-* 1, /* Drop the first 16 chars */ | STEM REC., | LITERAL +5 | DELAY, | PIPESTOP say HowMany rec.0 CP SET MSG

Re: Puzzle or what?

2009-03-17 Thread James Stracka (DHL US)
You might want to look at SHOW. I find that nice for READER files as well as disk files. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Huegel, Thomas Sent: Tuesday, March 17, 2009 8:07 AM To: IBMVM@LISTSERV.UARK.EDU

Re: Total VDISK space allowed

2009-03-13 Thread James Stracka (DHL US)
Check your System Configuration file or issue these Class B commands: QueryVDISK userlim QueryVDISK syslim From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Martin, Terry R. (LOCKHEED MARTIN Performance

Re: EXECIO QUESTION

2009-03-11 Thread James Stracka (DHL US)
Rob, No! Kris would say, PIPE COMMAND LISTFILE... Jim -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Rob van der Heij Sent: Wednesday, March 11, 2009 2:17 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: EXECIO QUESTION On Wed, Mar 11,

Re: Service - Where did it come from

2009-03-06 Thread James Stracka (DHL US)
Look at the $APPLIST file on the DELTA disk for the product. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Bob Bates Sent: Friday, March 06, 2009 8:54 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Service - Where did it come from

Re: XSTORE

2009-03-05 Thread James Stracka (DHL US)
I agree. Then we would not have to reconfigure LPAR storage definitions when testing OS/390 and z/VM. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Huegel, Thomas Sent: Wednesday, March 04, 2009 4:05 PM To:

Re: VM FTP Question

2009-03-05 Thread James Stracka (DHL US)
David, If you are allowed, get VMFTP. It has good macro support and support for return codes. Normal FTP almost always give RC=0 Jim From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Tracy, David Sent: Thursday,

Re: SFS question (was: Q LIMITS question)

2009-03-04 Thread James Stracka (DHL US)
Apparently you are not running SAFESFS? If not, this becomes labor intensive. -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Gentry, Stephen Sent: Wednesday, March 04, 2009 10:32 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: SFS

Re: z/VM 5.4.0 RSU 801 - System Abend Code - VAI008

2009-02-25 Thread James Stracka (DHL US)
At another assignment I believe we experienced this or another of the VAI abends running 5.3 and IBM sent use some test code. I suggest you open a severity one ticket with IBM. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf

Re: Second level VM systems

2009-02-24 Thread James Stracka (DHL US)
I got into VM late in life. My first VM system was HPO 3.6. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Kris Buelens Sent: Tuesday, February 24, 2009 12:42 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: Second level VM

Re: Second level VM systems

2009-02-23 Thread James Stracka (DHL US)
To prevent the MDC problem on 2nd level we issue: SET MDCACHE SYSTEM OFF -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Tom Duerbusch Sent: Friday, February 20, 2009 4:04 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: Second level VM

DFSMSDSS and VM Volumes

2009-02-20 Thread James Stracka (DHL US)
In preparation for a Disaster Recovery Test the Storage Group tested DFSMSDSS to dump and restore a VM volume. The dump appears to work but the restore failed. Does anybody know what magical incantation, parameter, option or format of the restore to volume needs to be done in order to get the

Re: DFSMSDSS and VM Volumes

2009-02-20 Thread James Stracka (DHL US)
Tom, I shall forward your JCL to the Storage guy. Was the target volume formatted in any way prior to the restore as a standard OS/390 or VM volume? Thank you, Jim -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Thomas Kern Sent:

Re: DFSMSDSS and VM Volumes

2009-02-20 Thread James Stracka (DHL US)
- PURGE Paul Feller AIT Mainframe Technical Support -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: Friday, February 20, 2009 2:02 PM To: IBMVM@LISTSERV.UARK.EDU Subject: DFSMSDSS and VM Volumes

How do we Tell RMSMASTR to Mount a Second or Third Tape for FILEPOOL UNLOAD?

2009-02-19 Thread James Stracka (DHL US)
We have an EXEC that does a FILEPOOL UNLOAD of one of our VMSYSB: SYS nightly. Yesterday enough data was put into the SFS such that when doing the FILEPOOL UNLOAD it required a second tape. How do we tell our tape manager or RMSMASTR to mount another tape? I had thought it was some form of

Re: How do we Tell RMSMASTR to Mount a Second or Third Tape for FILEPOOL UNLOAD?

2009-02-19 Thread James Stracka (DHL US)
Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of James Stracka (DHL US) Sent: February 19, 2009 10:58 To: IBMVM@LISTSERV.UARK.EDU Subject: How do we Tell RMSMASTR to Mount a Second or Third Tape for FILEPOOL UNLOAD? We have an EXEC that does a FILEPOOL UNLOAD of one of our VMSYSB

Re: Secure ACTIVATE

2009-02-19 Thread James Stracka (DHL US)
Richard,. We do not run VM:Secure here but my old notes say to put a user on HOLD issue: VMSECURE MAINT MANAGE userid HOLD You might check for an ACTIVATE or NOHOLD option. Jim From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu]

How Can I Tell if this Disk for Formatted with the RECOMP Option?

2009-02-19 Thread James Stracka (DHL US)
We have a minidisk defined as 50 cylinders that a software product claims is a RECOMP disk. Before I question the vendor, is there a way to query this minidisk to see if someone did a FORMAT (RECOMP? q disk q LABEL VDEV M STAT CYL TYPE BLKSZ FILES BLKS USED-(%) BLKS LEFT BLK TOTAL SMM191

How Can I Tell if this Disk for Formatted with the RECOMP Option?

2009-02-19 Thread James Stracka (DHL US)
I downloaded Kris Buelens's MDSK package and it worked for me. Thank you Kris. q disk q LABEL VDEV M STAT CYL TYPE BLKSZ FILES BLKS USED-(%) BLKS LEFT BLK TOTAL SMM191 194 Q R/O50 3390 4096 2221 8657-96343 9000 Ready; T=0.01/0.01 16:28:19 QDSK q (DETAIL LABEL

Re: How Can I Tell if this Disk for Formatted with the RECOMP Option?

2009-02-19 Thread James Stracka (DHL US)
mdisk of a different size and the new disk doesn't get reformatted you will see inconsistencies. -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu]on Behalf Of James Stracka (DHL US) Sent: Thursday, February 19, 2009 3:31 PM To: IBMVM@LISTSERV.UARK.EDU

Re: How Can I Tell if this Disk for Formatted with the RECOMP Option?

2009-02-19 Thread James Stracka (DHL US)
As I stated, this is not the normal S-DISK 100/107 thing as both Q DISK Q and Q V 193 show the EXACT SAME SIZE. I can image a few strange cinereous where a RECOMP was done on some ancient history disk and the first 50 cylinders were DDRed or something like that with no intervening CMS FORMAT.

Re: Re-labeling CP-Owned volumes on a live system

2009-01-30 Thread James Stracka (DHL US)
Same with me. The IBM supplied volsers never lasted for more than the few hours doing the installs. By end of day they were VMsomething. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Mike Walter Sent: Friday, January 30,

Re: SFS and MINIOPT settings question

2009-01-30 Thread James Stracka (DHL US)
We also add the NOMDC to the 191 and 192 (which we use for the BACKUP file) also. -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Kris Buelens Sent: Friday, January 30, 2009 10:53 AM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: SFS and

Re: Using VTOD

2009-01-30 Thread James Stracka (DHL US)
Florian, I realize Rob already responded with a solution that works for you. However, would changing the TIMEZONE also work for you by doing something like: CP DEF TIMEZONE FIX WEST 03:49:30 CP SET TIMEZONE FIX Jim From: The IBM

Re: SPXTAPE

2009-01-22 Thread James Stracka (DHL US)
Or a WAIT option with return codes. From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of David Boyes Sent: Thursday, January 22, 2009 3:18 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: SPXTAPE You have to capture the

VTS and New Virtual Tapes

2009-01-20 Thread James Stracka (DHL US)
We are having a problem with our VTS and new virtual scratch tapes and were wondering if anyone has experienced a similar problem. If we mount a new virtual scratch tape, by this I mean a tape which has never had any data of any form written to it, TAPE FSF 1 fails with DMSP2C110S Error reading

Re: LOGO CONFIG

2009-01-12 Thread James Stracka (DHL US)
You need to do a REFRESH for CP and VTAM -Original Message- From: The IBM z/VM Operating System [mailto:ib...@listserv.uark.edu] On Behalf Of Jim Bohnsack Sent: Monday, January 12, 2009 10:02 AM To: IBMVM@LISTSERV.UARK.EDU Subject: LOGO CONFIG I thought that I had, in the past, been able