Re: IGVINITFREEMAIN

2011-10-07 Thread Edward Jaffe
On 10/6/2011 8:57 PM, Barbara Nitz wrote: I have two more diag traps, but they're all official: IOSPROTCAPTUCB This should be CAPTUCB PROTECT=YES|NO in IECIOSxx IOSZDACMSGS I'll recommend we give this one a try... -- Edward E Jaffe Phoenix Software International, Inc 831 Parkview Drive

Re: IGVINITFREEMAIN

2011-10-07 Thread Barbara Nitz
This should be CAPTUCB PROTECT=YES|NO in IECIOSxx You're right, of course. Wonder why I thought it was a diag trap . Barbara -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu

Re: ACS dataclas- clarification

2011-10-07 Thread Doug Fuerst
Why do you have the VALID_DC? Simply define the FILTLIST with the DSN qualifiers you want, in the order of selection. I believe you have an extra end in there. Something like this works fine. proc dataclas FILTLIST OEDSN INCLUDE ( OMVS.** ) FILTLIST ZFSA INCLUDE( OMVSA.ZFSSYSA.** )

Jes2 held output class

2011-10-07 Thread Lim Ming Liang
Hi, I have jes2parm lines of; 000508 OUTCLASS(Q) BLNKTRNC=YES,/* 000509 OUTDISP=(WRITE,WRITE), 000510 OUTPUT=PRINT, /* 000511 TRKCELL=YES /* 000512 /* but when I run a job with msgclass=q, in sdsf the job output show ODisp

Re: ACS dataclas- clarification

2011-10-07 Thread jagadishan perumal
Hi, I wrote the DATACLAS like below. All the Dataset defined with DSN101C.** are taking the DATACLAS : DB2EXT but Dataset defined with VSAMXT.JET are not taking the DATACLAS:VSAMXT. PROC DATACLAS FILTLIST DB2EXT INCLUDE(DSN101C.**) FILTLIST VSAMXT INCLUDE(VSAMXT.**) SELECT WHEN(DSN EQ

Re: ACS dataclas- clarification

2011-10-07 Thread Doug Fuerst
Are you sure your storclass routines support this DC? Try translating the DC, SC, MC, and Stogrp, and then validate the config, then activate the SCDS. Going to see a client to do an SMS config for them. Good luck. Doug -Original Message- From: IBM Mainframe Discussion List

Re: Jes2 held output class

2011-10-07 Thread Ravi Gaur
can you try $DOUTCLASS(Q) and post output here.. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with the message: GET IBM-MAIN INFO Search the archives at

Re: ACS dataclas- clarification

2011-10-07 Thread Richards, Robert B.
Jags, Let's start again from scratch. Please repost the working DATACLAS routine before you tried to add VSAMXT. Bob -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with

Re: Jes2 held output class

2011-10-07 Thread Lim Ming Liang
Hi Ravi, I checked JES2 Init Tuning Ref, I can't find the keyword $DOUTCLASS. In which manual this keyword usage is documented ? If you don't mind I am asking. Regards Lim ML On 07/10/11 5:03 PM, Ravi Gaur wrote: can you try $DOUTCLASS(Q) and post output here..

Re: Jes2 held output class

2011-10-07 Thread Jim Thomas
$D OUTCLASS(n) - Display output classes z/OS V1R12.0 JES2 Commands SA22-7526-11 Function To display output classes. Syntax -$D--OUTCLASS-+-+- +-nn-+--+-+ |'---+-mm-+-'

Re: Jes2 held output class

2011-10-07 Thread Lim Ming Liang
Oh, I see, for a moment I thought Ravi requesting me to put that in the parmlib. There you go, Ravi; $HASP842 OUTCLASS(Q) OUTPUT=PRINT,BLNKTRNC=YES, $HASP842 OUTDISP=(WRITE,WRITE),TRKCELL=YES Regards Lim ML On 07/10/11 5:34 PM, Jim Thomas wrote: $D OUTCLASS(n) - Display output

Re: ACS dataclas- clarification

2011-10-07 Thread Jim Thomas
Sir, Could you please try (and let me know of your results). SELECT (DSN) WHEN(DB2EXT) - SET DATACLAS EQ 'DB2EXT' WHEN(VSAMXT) - SET DATACLAS EQ 'VSAMXT' Kind Regards Jim Thomas 617-233-4130 (mobile) 636-294-1014(res)

Re: Jes2 held output class

2011-10-07 Thread Ravi Gaur
so you see JES has got WRITE,WRITE for normal abnormal OUTDISP parm.Now please go to JES2 command and reference guide and look for $TOUTCLASS and set it as per your need...Thanks,Ravi -- For IBM-MAIN subscribe / signoff /

Re: Jes2 held output class

2011-10-07 Thread Ravi Gaur
sorry ,Guess I misunderstood your question .Correct me now ..Do you see some job with msgclass=q in Hold output queue? can you post the job output Please make sure if you are running in sysplex every system in JESPLEX got same setting since I am doubting if your job is routed to lpar where

Re: TSO TEST Debugging with TPUT and input paramters

2011-10-07 Thread Elardus Engelbrecht
Micheal Butz wrote: I have a program I am trying to debug that issues TPUTS so I have to use the CP parm however it has input paramters and they are not passed when using the CP parm You've got excellent replies, but in my very humble opinion, could you be kind to please post your program's

Re: ACS dataclas- clarification

2011-10-07 Thread Lizette Koehler
Jags, For debugging ACS code it is always helpful to add WRITE statements to your DO LOOPS. So when (dsn eq oedsn) do set dataclas eq 'omvs' exit end Becomes when (dsn eq oedsn) do write 'The dsn is DSN and the class is dataclas' set dataclas eq 'omvs'

Re: Automated SMFDUMP Job issue

2011-10-07 Thread saurabh khandelwal
Yes that is also a option. But this backup process is working in all other systems. But I am not getting the reason for holding SMFDUMP job in this system occasionally. Most of the time it works. But some time it doesnt. How that is possible. I tried comparing the Job log of the two system (

Re: IGVINITFREEMAIN

2011-10-07 Thread Peter Relson
If IBM closes it as BAD then you'll have to restrict IGVINITFREEMAIN to a sandbox. You are expected to use these DIAG traps ONLY in a sandbox regardless of how IBM or anyone else chooses to deal with difficulties that you encounter when using them. That is a reason why they are not documented.

Re: ZDNET actually says something nice about IBM LINUX

2011-10-07 Thread Roger Bowler
Timothy Sipples wrote: it's impossible to configure a z114 at capacity setting A00 without either one IFL or one ICF -- and you probably know better. IBM's starting mainframe configuration is either a single IFL model or a capacity setting A01 model. Yes, it's one of those two (not the

Re: Jes2 held output class

2011-10-07 Thread Lim Ming Liang
Hi Ravi, I am not running in a sysplex environment. The running jobcard, //SARINITJOB CLASS=A,MSGLEVEL=(1,1),MSGCLASS=Q, // NOTIFY=SYSUID and the output shown in sdsf; SDSF HELD OUTPUT DISPLAY ALL CLASSES LINES 51 LINE 1-1 (1) COMMAND INPUT ===

Re: 1TB EAV Support

2011-10-07 Thread Roger Bowler
Timothy Sipples wrote: A tape drive is no longer a requirement to start and run z/OS -- thank you, IBM! Timothy, Could you outline the procedure for installing z/OS on a greenfield site z196 without a tape drive? Last time I installed z/OS on a brand new z10 at a new site, a 3590 tape drive

Re: 1TB EAV Support

2011-10-07 Thread Lim Ming Liang
Nowaday, the IBM z/OS installation media are shipped with ServerPac DVDs. But you do need a supported z/OS Driver system to kick-start the installation, the whole process no tape drive involved . Regards Lim ML On 07/10/11 8:45 PM, Roger Bowler wrote: Timothy Sipples wrote: A tape drive is

Re: EMC DLm SMS or not

2011-10-07 Thread Mark Zelden
On Thu, 6 Oct 2011 22:51:55 -0500, R Hey sys...@yahoo.com wrote: Hi, I heard tapes can be defined as nonSMS or SMS when using DLm. What are the +/- of each? Do you have a copy of the DLm User Guide? It discusses the options in detail. While adding in SMS and OAM may be a few extra steps,

Re: 1TB EAV Support

2011-10-07 Thread R.S.
W dniu 2011-10-07 15:10, Lim Ming Liang pisze: Nowaday, the IBM z/OS installation media are shipped with ServerPac DVDs. But you do need a supported z/OS Driver system to kick-start the installation, the whole process no tape drive involved . Regards Lim ML In simple words, a *new* z/OS

Rename of DDname ?

2011-10-07 Thread Thomas Berg
Are there any way to rename a ddname ? By that I mean leaving the allocation as such untouched but the name of the allocation/DDname is changed. An example of usage is when You have an allocation for application 1 with DDname 'ABC' for dataset AAA.BBB and want to keep that and then want to run

Using unique HOSTSA (running VTAM as pure EN/NN) = 'Better Manageability'?

2011-10-07 Thread Hansen, Dave L - Eagan, MN
Group, I have been reviewing the Enterprise Extender Implementation guide (SG24-7359) in Chapter 3 it talks about HOSTSA and SACONNS. It says For better manageability we recommend defining or keeping a unique subarea number using HOSTSA, and running VTAM as a pure EN/NN by coding

SPOOL move

2011-10-07 Thread R.S.
I have to move JES2 SPOOL volumes from one control unit to another (another dasd box). IMHO the simplest method is to stop JES2, move the volumes using DSS copyvol and voila. However this method require an outage which can be long, because SPOOL is large. I just looked at the documentation -

Re: WTO Sample Program

2011-10-07 Thread John McKown
IMO, QEDIT is the proper way to go. hanging a WTOR to do normal operator interaction is easier (less code), but does not seem as professional to me. Perhaps it's because I get calls, at times, from newbies who ask There's a reply required to a message. What do I do?. I don't like replying Ignore

Re: 1TB EAV Support

2011-10-07 Thread John Eells
I'm not Timothy, but since I was involved in formulating the way to do this: 1. Order the Customized Offerings Driver (aka COD, 5751-COD) on DVD. 2. Modify the default IOCDS to support the COD's I/O configuration using the installation instructions that come with the COD. 3. Restore the COD

Re: SPOOL move

2011-10-07 Thread Jousma, David
Do as you say, add new volumes, drain the old ones, wait for IPL, then removed the old ones. If you have TDMF you can move spool volumes in use. Shouldn't move active jes checkpoints, but you can dynamically move those through checkpoint reconfig.

Re: SPOOL move

2011-10-07 Thread Mark Jacobs
If you have a product such as IBM's TDMF or FDRPAS it will happily move active spool volumes to another device. Mark Jacobs On 10/07/11 10:10, R.S. wrote: I have to move JES2 SPOOL volumes from one control unit to another (another dasd box). IMHO the simplest method is to stop JES2, move the

Re: 1TB EAV Support

2011-10-07 Thread Lim Ming Liang
Ah, yes, Roger's a greenfield site means a brand new start-up site, I presumed. Sorry, I did not catch those American English. Anyone still remember the video clip of Tape is Dead posted in one of the mainframe forums ? I really enjoyed that.:-D Regards Lim ML On 07/10/11 9:32 PM, R.S. wrote:

Re: WLM Classification Rules question

2011-10-07 Thread Joel C. Ewing
This is another of several recent messages that displays as total garbage to me (Thunderbird 6.0.2 on Fedora 15). Anyone have any idea what is going on here? This looks to me like the email I am receiving is ill-formed. Using view source I can see that the main message body is formatted

TSO/Telnet FTP limits

2011-10-07 Thread Larry Macioce
My counterpart has asked me a question on this subject. I thought there was a limit of 2mb, but he told me the file was appox. 150k bytes. He is trying to go from the mvs system to out vm system. He has ruled out the firewall(he tried form home 1st) by attempting the sme transfer from his

Re: WLM Classification Rules question

2011-10-07 Thread Roberts, John J
Anyone have any idea what is going on here? This looks to me like the email I am receiving is ill-formed. Some installations have special handling for email sent to addresses outside the home organization. The email is intercepted and stored in a database. What gets sent to the

Re: SPOOL move

2011-10-07 Thread Joel C. Ewing
And usually the only reason one would need to do this migration IS a new DASD subsystem and the removal of an old subsystem, which typically requires moving many volumes, not just SPOOL. Having a product like TDMF or FDRPAS makes such moves non disruptive and so painless, that every one of

Re: Rename of DDname ?

2011-10-07 Thread Walt Farrell
On Fri, 7 Oct 2011 15:45:50 +0200, Thomas Berg thomas.b...@swedbank.se wrote: Are there any way to rename a ddname ? By that I mean leaving the allocation as such untouched but the name of the allocation/DDname is changed. An example of usage is when You have an allocation for application 1

SV: Rename of DDname ?

2011-10-07 Thread Thomas Berg
-Ursprungligt meddelande- Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För Walt Farrell Skickat: den 7 oktober 2011 17:00 Till: IBM-MAIN@bama.ua.edu Ämne: Re: Rename of DDname ? On Fri, 7 Oct 2011 15:45:50 +0200, Thomas Berg thomas.b...@swedbank.se wrote:

Re: Rename of DDname ?

2011-10-07 Thread Gerhard Postpischil
On 10/7/2011 9:45 AM, Thomas Berg wrote: An example of usage is when You have an allocation for application 1 with DDname 'ABC' for dataset AAA.BBB and want to keep that and then want to run application 2 which requires the same DDname (for dataset CCC.DDD). This is just *one* example. Is it a

Re: Using unique HOSTSA (running VTAM as pure EN/NN) = 'Better Manageability'?

2011-10-07 Thread Chris Mason
Dave Q). What better manageability would the authors be talking about? Traces and dumps - principally when jumping between two or more in the pursuit of a problem which has manifestations in multiple VTAM nodes. It may actually assist IBM trying to work with one of your problems rather than

Re: TSO/Telnet FTP limits

2011-10-07 Thread Chris Mason
Larry What indications - messages, say - were there which accompanied the failure? Chris Mason On Fri, 7 Oct 2011 09:32:56 -0500, Larry Macioce mace1...@gmail.com wrote: My counterpart has asked me a question on this subject. I thought there was a limit of 2mb, but he told me the file was

Re: Using unique HOSTSA (running VTAM as pure EN/NN) = 'Better Manageability'?

2011-10-07 Thread Mike Wawiorko
For better manageability we recommend defining or keeping a unique subarea number using HOSTSA There's no benefit in unique APPN-only HOSTSAs that I know except this odd one. Some systems we've inherited have automation that examines the subarea number to decide on actions to take. We've left

Re: SPOOL move

2011-10-07 Thread David Andrews
On Fri, 2011-10-07 at 10:10 -0400, R.S. wrote: I have to move JES2 SPOOL volumes from one control unit to another (another dasd box). [...] Q: Is there any method to move spool volumes I believe there's support for migration between spool volumes in R13. The miscreants in my shop keep stuff on

Re: WLM Classification Rules question

2011-10-07 Thread Joel C. Ewing
On 10/07/2011 09:35 AM, Roberts, John J wrote: Anyone have any idea what is going on here? This looks to me like the email I am receiving is ill-formed. Some installations have special handling for email sent to addresses outside the home organization. The email is intercepted and stored

whereis command for TSO.

2011-10-07 Thread Donald Russell
Many years ago, at a job far far away, I wrote a TSO WHEREIS command for finding load modules. i.e. I could say TSO %WHEREIS mymodule and it would tell me the DSN, or perhaps just linklist. I use BLDL with a zero DCB to search the joblib, steplib etc, and map the results with IHAPDS. My

Re: Rename of DDname ?

2011-10-07 Thread Elardus Engelbrecht
Thomas Berg wrote: Are there any way to rename a ddname ? Why? What will you achieve by that? By that I mean leaving the allocation as such untouched but the name of the allocation/DDname is changed. An example of usage is when You have an allocation for application 1 with DDname 'ABC' for

Re: 1TB EAV Support

2011-10-07 Thread David Andrews
On Fri, 2011-10-07 at 10:11 -0400, John Eells wrote: See Topic 3.1, What is the Customized Offerings Driver?, at: http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/e0z2b1c0/3.1?SHELF=EZ2ZO213DT=20110615113655 John, is the COD usable as a rescue system? (Yeah, I see that it takes two

Re: whereis command for TSO.

2011-10-07 Thread Elardus Engelbrecht
Donald Russell wrote: Many years ago, at a job far far away, I wrote a TSO WHEREIS command for finding load modules. i.e. I could say TSO %WHEREIS mymodule and it would tell me the DSN, or perhaps just linklist. Why not use TSO ISRDDN? This will do all and more you want. TSO ISRDDN then type

Re: SPOOL move

2011-10-07 Thread Ulrich Krueger
If you have to do it the hard way, with JES2 commands: - turn on SPOOL volume fencing, to make sure that a job is allocated to a minimum number of SPOOL volumes and not scattered across all of them. That makes it easier to drain volumes and get them empty without an IPL. - make sure you have

SV: Rename of DDname ?

2011-10-07 Thread Thomas Berg
See my previous answer/post.   Regards, Thomas Berg _ Thomas Berg   Specialist   A M   SWEDBANK -Ursprungligt meddelande- Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För Elardus Engelbrecht Skickat: den 7 oktober

Re: Using unique HOSTSA (running VTAM as pure EN/NN) = 'Better Manageability'?

2011-10-07 Thread Chris Mason
Mike Horses for Courses! Seeing subarea 1 is a good reminder you've got rid of the subarea functions from VTAM. Seeing an identifying subarea number is a good reminder to which system the trace or dump belongs and VTAM maintenance folk will thank you for it! If you omit HOSTSA you'll get

Re: Rename of DDname ?

2011-10-07 Thread Paul Gilmartin
On Fri, 7 Oct 2011 09:59:41 -0500, Walt Farrell wrote: On Fri, 7 Oct 2011 15:45:50 +0200, Thomas Berg wrote: Are there any way to rename a ddname ? By that I mean leaving the allocation as such untouched but the name of the allocation/DDname is changed. An example of usage is when You have an

BDAM (was: five char device address)

2011-10-07 Thread John Gilmore
Edward Jaffe wrote: | Brighter future?! BDAM is supported for 1TB EAV and getting a 'facelift' with zHPF | channel programs. Where's the 'darkness' in that? As long as your addresses are | relative and not absolute, you are AOK! and I very largely agree. In the right hands even old-style BDAM

Re: 1TB EAV Support

2011-10-07 Thread Mike Myers
Lim: I've heard a little about this new delivery method. What size are the DASD images on the DVD (3390-3, 3390-9, or 3390-27)? Mike Myers On 10/07/2011 09:10 AM, Lim Ming Liang wrote: Nowaday, the IBM z/OS installation media are shipped with ServerPac DVDs. But you do need a supported z/OS

Re: Using unique HOSTSA (running VTAM as pure EN/NN) = 'Better Manageability'?

2011-10-07 Thread Mike Wawiorko
If you omit HOSTSA you'll get SACONNS=NO. This point doesn't jump out at me from Table 70, Node type functional summary and yet I believe you must be right - and I'll have to revise my just created diagrams. In principle the default value for the SACONNS start option is YES - just take a look

Re: whereis command for TSO.

2011-10-07 Thread Donald Russell
I had a quick look at ISRDDN that is very cool, but I'm not sure now how to use it in my application: From a rexx program running in a batch job, I call module mymodule. Prior to that, I want to write some information about that module to a new DD. At the very least I want the DSN that

Re: 1TB EAV Support

2011-10-07 Thread John Eells
David Andrews wrote: On Fri, 2011-10-07 at 10:11 -0400, John Eells wrote: See Topic 3.1, What is the Customized Offerings Driver?, at: http://publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/e0z2b1c0/3.1?SHELF=EZ2ZO213DT=20110615113655 John, is the COD usable as a rescue system? (Yeah, I

Re: whereis command for TSO.

2011-10-07 Thread Scott Ford
Elardus:   I hadnt used ISRDDN for this function before and its nice...thank you. I used it for doing storage displays when I was looking at control blocks. Scott J Ford Software Engineer http://www.identityforge.com   From: Elardus Engelbrecht

Automated SMFDUMP Job issue- Still waiting for suggestion

2011-10-07 Thread saurabh khandelwal
Yes that is also a option. But this backup process is working in all other systems. But I am not getting the reason for holding SMFDUMP job in this system occasionally. Most of the time it works. But some time it doesnt. How that is possible. I tried comparing the Job log of the two system ( a)

Re: AUTOIPL (was Re: Health Check (IBMSVA,SVA_AUTOIPL_DEFINED)

2011-10-07 Thread Shmuel Metz (Seymour J.)
In of57389144.a4f7a555-on85257922.0002ad82-85257922.00070...@us.ibm.com, on 10/06/2011 at 09:16 PM, Jim Mulder d10j...@us.ibm.com said: That require a bit more code in the AMDSADMP macro (in HLASM macro language, which is not my favorite programming language). Could you contract it out? I'm

Re: 1TB EAV Support

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 4e8eff5b.7040...@bremultibank.com.pl, on 10/07/2011 at 03:32 PM, R.S. r.skoru...@bremultibank.com.pl said: In simple words, a *new* z/OS customer still needs a tape for initial installation. The words may be simple, but they're also false and not what the OP wrote. -- Shmuel

Re: JCL CROSS-REFERENCE Utilities (OT for Paul, Rick, and Shmuel)

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 93891f43642f3c419a7d75acc2b1db6f3bfbbcd...@exchangemb2.dhs.state.ia.us, on 10/06/2011 at 03:58 PM, Roberts, John J jrobe...@dhs.state.ia.us said: (2) Upgraded our OS from OS/MFT to OS/MVT. We can now run seven jobs concurrently!!! In 512 KiB? Not bllody likely! (5) We now have a 2780 RJE

Re: TSO TEST Debugging with TPUT and input paramters

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 55508966-b368-4e50-b03b-30f0f1c9d...@optonline.net, on 10/06/2011 at 04:18 PM, Micheal Butz michealb...@optonline.net said: I have a program I am trying to debug that issues TPUTS so I have to use the CP parm No! You have to you CP if the code expects command processor parameter list,

Re: TSO/Telnet FTP limits

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 3016265589466612.wa.mace1953gmail@bama.ua.edu, on 10/07/2011 at 09:32 AM, Larry Macioce mace1...@gmail.com said: Subject: TSO/Telnet FTP limits Telnet has nothing to do with FTP. Are you asking about an FTP client in TSO? An FTP client in Unix System Services? An XMIT from TSO to a VM

Re: Rename of DDname ?

2011-10-07 Thread Shmuel Metz (Seymour J.)
In a90e503c23f97441b05ee302853b0e622fade9e...@fspas01ev010.fspa.myntet.se, on 10/07/2011 at 03:45 PM, Thomas Berg thomas.b...@swedbank.se said: Are there any way to rename a ddname ? By that I mean leaving the allocation as such untouched but the name of the allocation/DDname is changed.

Re: TSO TEST Debugging with TPUT and input paramters

2011-10-07 Thread Shmuel Metz (Seymour J.)
In CAArMM9SgR06zW5gMp5YcHHX=1qcd9fyx78gyqxv4gb4nxaa...@mail.gmail.com, on 10/06/2011 at 06:03 PM, Tony Harminc t...@harminc.net said: Certainly any program can issue TPUT when running under TSO. (For that matter any program running in batch or CICS or whatever can issue TPUT to an online TSO

Re: CA MSM v4 on z/os 1.9

2011-10-07 Thread Shmuel Metz (Seymour J.)
In a90766b5039c59409110c92d47216f5905835...@s1flokydce2k322.dm0001.info53.com, on 10/06/2011 at 02:00 PM, Jousma, David david.jou...@53.com said: And it's not like MSM is a light-weight product either, with ZFS file systems, Are you saying that it won't work with HFS? While I understand that

Re: WLM Classification Rules question

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 93891f43642f3c419a7d75acc2b1db6f3bfbbcd...@exchangemb2.dhs.state.ia.us, on 10/07/2011 at 09:35 AM, Roberts, John J jrobe...@dhs.state.ia.us said: Some installations have special handling for email sent to addresses outside the home organization. The email is intercepted and stored in a

Re: IGVINITFREEMAIN

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 0742371819933648.wa.bill.hecoxmail@bama.ua.edu, on 10/06/2011 at 02:47 PM, Bill Hecox bill.he...@mail.com said: I can see that it is possible to pass parms to SVC99 that points to freed storage that was dirtied on the freemain. Doesn't SVC 99 validate its arguments? -- Shmuel

Re: whereis command for TSO.

2011-10-07 Thread Chicklon, Thomas
TSO ISRDDN or DDLIST seem to be suffering from a lack of exposure and thus low use. There are other hidden gems in there too. Con (contention) and Enq (enqueue) are ones I frequently use. The valid list primary commands are: ApfBrowse ConCList

Re: Rename of DDname ?

2011-10-07 Thread Ed Gould
When I looked at the item I thought about #39;reuse#39; but wasn#39;t sure if that was what the user wn#39;t or not. Ed -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@bama.ua.edu with

Re: ACS dataclas- clarification

2011-10-07 Thread Gibney, Dave
Picky point. DO...END in ACS routines are not loops. Otherwise, I agree, use writes liberally. -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Lizette Koehler Sent: Friday, October 07, 2011 4:31 AM To: IBM-MAIN@bama.ua.edu Subject: Re:

Re: JCL CROSS-REFERENCE Utilities (OT for Paul, Rick, and Shmuel)

2011-10-07 Thread Ed Gould
This goes back a lot of years but our systems each had 512k and we ran 6 jobs. Granted the small regions were 64k but it did work. Ed -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to

SV: Rename of DDname ?

2011-10-07 Thread Thomas Berg
No. That frees the existing allocation of datasets, which is what I want to avoid.   Regards, Thomas Berg _ Thomas Berg   Specialist   A M   SWEDBANK -Ursprungligt meddelande- Från: IBM Mainframe Discussion List

SV: Rename of DDname ?

2011-10-07 Thread Thomas Berg
-Ursprungligt meddelande- Från: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] För Shmuel Metz (Seymour J.) Skickat: den 7 oktober 2011 19:40 Till: IBM-MAIN@bama.ua.edu Ämne: Re: Rename of DDname ? In

Re: WLM Classification Rules question

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 4e8f1ad5.5020...@acm.org, on 10/07/2011 at 10:29 AM, Joel C. Ewing jcew...@acm.org said: If the list server does not support broadcasting multi-part MIME messages, I don't see any easy way it could possibly handle an incoming message that is UTF-8 base-64 encoded without first decoding

Re: CA MSM v4 on z/os 1.9

2011-10-07 Thread Jousma, David
Sorry, no, It should work with HFS. I was using that as a generic term for requiring USS support. g,d r. _ Dave Jousma Assistant Vice President, Mainframe Services david.jou...@53.com 1830 East Paris, Grand Rapids, MI 49546

Re: Rename of DDname ?

2011-10-07 Thread John McKown
I don't think you can do a rename of an existing DD name. However, if you have a driver program doing the allocations, perhaps you can change it. Instead of allocating, say, SYSUT1. You allocate some unusual name, perhaps #SYSUT1$ (just to pick one). Then, when you want to refer to that

Re: TSO TEST Debugging with TPUT and input paramters

2011-10-07 Thread Tony Harminc
On 7 October 2011 13:47, Shmuel Metz (Seymour J.) shmuel+ibm-m...@patriot.net wrote: In CAArMM9SgR06zW5gMp5YcHHX=1qcd9fyx78gyqxv4gb4nxaa...@mail.gmail.com, on 10/06/2011   at 06:03 PM, Tony Harminc t...@harminc.net said: Certainly any program can issue TPUT when running under TSO. (For that

Re: TSO/Telnet FTP limits

2011-10-07 Thread John McKown
I don't really understand the question. And I don't have access to a z/VM system, but I have successfully ftp'ed much larger files from z/OS to z/OS. If the ftp is failing, perhaps the receiving CMS disk is full? On Fri, 2011-10-07 at 09:32 -0500, Larry Macioce wrote: My counterpart has asked me

Re: TSO/Telnet FTP limits

2011-10-07 Thread Larry Macioce
The transfer works vm to vm so it can't be a full cms disk, but that would have been a good first. I have asked for any errors he recieved and am waiting for a response mace -- For IBM-MAIN subscribe / signoff / archive access

Re: whereis command for TSO.

2011-10-07 Thread Elardus Engelbrecht
Scott Ford wrote: Elardus:  I hadnt used ISRDDN for this function before and its nice...thank you. You are very welcome! It is a big lion pleasure for me to help out! :-D And I learn from your posts you kindly placed here on IBM-MAIN. ;-D I used it for doing storage displays when I was looking

Re: JCL CROSS-REFERENCE Utilities (OT for Paul, Rick, and Shmuel)

2011-10-07 Thread Elardus Engelbrecht
Shmuel Metz (Seymour J.) wrote: (2) Upgraded our OS from OS/MFT to OS/MVT. We can now run seven jobs concurrently!!! H, I'm smelling something fishy. What resources are used concurrently? In 512 KiB? Not bllody likely! Those programmers and their jobs are probably very economically with

Re: TSO TEST Debugging with TPUT and input paramters

2011-10-07 Thread Ed Gould
Tony: AFAIK and its been this way since TSO/E first came out. TPUT will only work IN TSO putline/getline will work in batch and TSO. CICS has never worked . Ed - Original Message - From: Tony Harminc t...@harminc.net To: IBM-MAIN@bama.ua.edu Cc: Sent: Friday, October 7, 2011 12:30 PM

Re: JCL CROSS-REFERENCE Utilities (OT for Paul, Rick, and Shmuel)

2011-10-07 Thread Roberts, John J
(2) Upgraded our OS from OS/MFT to OS/MVT. We can now run seven jobs concurrently!!! H, I'm smelling something fishy. What resources are used concurrently? In 512 KiB? Not bllody likely! Those programmers and their jobs are probably very economically with all those bits and bytes... :-D

Re: SV: Rename of DDname ?

2011-10-07 Thread Lizette Koehler
Yes, there's an old facility in DAIR. I assume that it uses a DYNALLOC TU under the cover, but don't recall the details. They may have been talking about IKJDAIR. Documentation is found in z/OS V1R11.0 TSO/E Programming Services z/OS V1R10.0-V1R11.0 SA22-7789-07 Lizette

Re: CA MSM v4 on z/os 1.9

2011-10-07 Thread Mark Zelden
On Fri, 7 Oct 2011 12:18:55 -0500, Shmuel Metz (Seymour J.) shmuel+ibm-m...@patriot.net wrote: In a90766b5039c59409110c92d47216f5905835...@s1flokydce2k322.dm0001.info53.com, on 10/06/2011 at 02:00 PM, Jousma, David david.jou...@53.com said: And it's not like MSM is a light-weight product

Re: 1TB EAV Support

2011-10-07 Thread David Andrews
On Fri, 2011-10-07 at 12:53 -0400, John Eells wrote: We support the COD's use only for installing z/OS ... safer--and not very much overhead after you have done it the first time--to create a rescue system of your own. I believe someone on the list (Mark Zelden?) ... 2 hours *per DVD.* All

Re: Rename of DDname ?

2011-10-07 Thread Chris Craddock
Changing an allocated DDNAME is a recipe for a train wreck. Just don't. The Allocation component is older than dirt. If you were meant to be able to do such a thing there would be an interface for it. Chris Craddock Sent from my cell phone 281-770-1950 On Oct 7, 2011, at 12:29 PM, John

Re: SPOOL move

2011-10-07 Thread Shaffer, Terri E
So since I am always curious and sometimes like to shoot from the hip. What would happen if you quiese the system down to JES2, NET and TSO. Submit a batch DFDSS FULL volume with copyvolid, then abend JES2, vary the old volume off and new volume on and then restart JES2? Does jes2 keep any

Re: TSO TEST Debugging with TPUT and input paramters

2011-10-07 Thread Wayne Driscoll
TPUT has supported a USERID= operand, which will route the TPUT to a logged on TSO user, for as long as I can remember. If the user isn't logged on, the message gets dropped on the floor. If not running under TSO, TPUT without USERID= will produce no output.

Re: Change EATTR for Existing Data Sets with IDCAMS ALTER (Was: Magical Incantations in ADRDSSU)

2011-10-07 Thread Edward Jaffe
On 10/6/2011 8:58 AM, Edward Jaffe wrote: http://www.redbooks.ibm.com/redbooks/SG247768/wwhelp/wwhimpl/api.htm?href=4-3-3.htm contains: IBM ITSO Documentation [Snip] To change the EATTR value after a new allocation requires you to run the AMS ALTER command. [Snip] /IBM ITSO Documentation

Re: Adding another IP address to OSA

2011-10-07 Thread Neal Eckhardt
Thank you all for your replies, I got involved in other things, and started to go through the stuff Chris posted, now I'll have to look at this. Thank you all. Neal -- For IBM-MAIN subscribe / signoff / archive access

Re: TSO TEST Debugging with TPUT and input paramters

2011-10-07 Thread Tony Harminc
On 7 October 2011 14:01, Ed Gould ps2...@yahoo.com wrote: Tony: AFAIK and its been this way since TSO/E first came out. TPUT will only work IN TSO That is certainly not true. TPUT from the very beginning had an ASID= option (well, in pre-MVS days it was TJID=, which is actually still there as

DFSORT / ICETOOL split file into smaller files adding header

2011-10-07 Thread John Mattson
I have a large file, and I need to split it into smaller files of 50,000 recs each I started off using Batch REXX so that I could dynamically allocate a large number of output files, each with a different name. The same REXX also creates SORT control cards (see below). The REXX

SV: SV: Rename of DDname ?

2011-10-07 Thread Thomas Berg
Thanks, will look at that when I don't get network error when trying to reach IBM manuals.   Regards, Thomas Berg _ Thomas Berg   Specialist   A M   SWEDBANK -Ursprungligt meddelande- Från: IBM Mainframe Discussion List

Re: TSO TEST Debugging with TPUT and input paramters

2011-10-07 Thread Shmuel Metz (Seymour J.)
In caarmm9te8lasltn8adyberdywd0jukdot1h0o9g7g263nyx...@mail.gmail.com, on 10/07/2011 at 01:30 PM, Tony Harminc t...@harminc.net said: Though it's not, of course, logically required, I infer from the context that you think the second part is incorrect. Please give details. How do you direct

Re: CA MSM v4 on z/os 1.9

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 3312735105136745.wa.markmzelden@bama.ua.edu, on 10/07/2011 at 01:15 PM, Mark Zelden m...@mzelden.com said: Are you thinking of PDSE? I wasn't. Thanks for reminding me :-( -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO position; see

Re: JCL CROSS-REFERENCE Utilities (OT for Paul, Rick, and Shmuel)

2011-10-07 Thread Shmuel Metz (Seymour J.)
In 93891f43642f3c419a7d75acc2b1db6f3bfbbcd...@exchangemb2.dhs.state.ia.us, on 10/07/2011 at 01:11 PM, Roberts, John J jrobe...@dhs.state.ia.us said: This was all very tongue in cheek, but much of what I said is based upon my reality back in 1970. I did indeed work on a 512KB S360/65 system

Re: SV: Rename of DDname ?

2011-10-07 Thread Shmuel Metz (Seymour J.)
In a90e503c23f97441b05ee302853b0e622fade9e...@fspas01ev010.fspa.myntet.se, on 10/07/2011 at 07:19 PM, Thomas Berg thomas.b...@swedbank.se said: Do You know anything more that helps me to find it ? The description of IKJDAIR used to be in TSO Services. -- Shmuel (Seymour J.) Metz,

  1   2   >