Any simple tool to monitor the storage uasge ?

2012-05-04 Thread Miklos Szigetvari
Hi Any simple tool, to monitor the storage usage of an address space ? I'm using now the MXI from Rob Scott, and it is very good, but I would need something like a function call to get this in a program or in REXX -- For IBM

Re: Any simple tool to monitor the storage uasge ?

2012-05-04 Thread Rob Scott
] On Behalf Of Miklos Szigetvari Sent: 04 May 2012 11:35 To: IBM-MAIN@bama.ua.edu Subject: Any simple tool to monitor the storage uasge ? Hi Any simple tool, to monitor the storage usage of an address space ? I'm using now the MXI from Rob Scott, and it is very good, but I would need something like

Re: Any simple tool to monitor the storage uasge ?

2012-05-04 Thread Miklos Szigetvari
to monitor the storage uasge ? Hi Any simple tool, to monitor the storage usage of an address space ? I'm using now the MXI from Rob Scott, and it is very good, but I would need something like a function call to get this in a program or in REXX

Re: Any simple tool to monitor the storage uasge ?

2012-05-04 Thread Bernd Oppolzer
Maybe you could write a function that reads the control blocks of the z/OS storage management queues and computes the overall size of the used storage blocks, per subpool? If you call this function somewhere in a loop in your main program, you could discover if one of your subroutines allocates

Re: Any simple tool to monitor the storage uasge ?

2012-05-04 Thread Rob Scott
: Re: Any simple tool to monitor the storage uasge ? Maybe you could write a function that reads the control blocks of the z/OS storage management queues and computes the overall size of the used storage blocks, per subpool? If you call this function somewhere in a loop in your main program, you

Rexx IRXEXCOM reporting insufficient storage -- what storage?

2012-05-02 Thread Charles Mills
I have IRXEXCOM returning a -2 (Processing was not successful. Insufficient storage was available for a requested SET. Processing was terminated. Some of the request blocks (SHVBLOCKs) may not have been processed and their SHVRET bytes will be unchanged.) at a customer site where I have limited

Monitoring Real Storage Utilization

2012-04-11 Thread Mark Jacobs
We had a discussion yesterday regarding our obsolete IEFUSI exit and how it should be modernized to even know about the virtual storage region above the 2GB line. One of the concerns was that since IEFUSI has no practicable effect on authorized programs I was asked to come up with some ways

Re: Monitoring Real Storage Utilization

2012-04-11 Thread Mark Zelden
On Wed, 11 Apr 2012 10:24:10 -0400, Mark Jacobs mark.jac...@custserv.com wrote: We had a discussion yesterday regarding our obsolete IEFUSI exit and how it should be modernized to even know about the virtual storage region above the 2GB line. One of the concerns was that since IEFUSI has

Rexx: load a module to storage

2012-04-01 Thread Itschak Mugzach
Is this possible to load (not link) a module into storage using Rexx? We have a compiled table I need to examine using rexx and want to avoid assembler coding in order to make the application simple. Thanks for your ideas. ITschak

Re: Rexx: load a module to storage

2012-04-01 Thread Ray Overby
:52 AM, Itschak Mugzach wrote: Is this possible to load (not link) a module into storage using Rexx? We have a compiled table I need to examine using rexx and want to avoid assembler coding in order to make the application simple. Thanks for your ideas. ITschak

Re: Rexx: load a module to storage

2012-04-01 Thread Hardee, Chuck
Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Itschak Mugzach Sent: Sunday, April 01, 2012 9:52 AM To: IBM-MAIN@bama.ua.edu Subject: Rexx: load a module to storage Is this possible to load (not link) a module into storage using Rexx? We have a compiled table

Re: Rexx: load a module to storage

2012-04-01 Thread Paul Gilmartin
On Sun, 1 Apr 2012 09:38:11 -0500, Ray Overby wrote: I am not aware of native rexx support for LOAD. You could write a rexx function in assembler. I believe if you look at the CBT web site there is at least a single example of this. I found something at:

Re: Rexx: load a module to storage

2012-04-01 Thread Shmuel Metz (Seymour J.)
In caodpegsrk7btvedt53ezgan-3tjfetuowq7vxrb9h+_ovf_...@mail.gmail.com, on 04/01/2012 at 04:52 PM, Itschak Mugzach imugz...@gmail.com said: Is this possible to load (not link) a module into storage using Rexx? TEST. I don't know of a clean way to do it. want to avoid assembler coding

Allocating- and deallocating storage on the CEEEDBBEHP

2012-03-06 Thread Fred van der Windt
I have an assembler module that reads files and needs storage below the 16M line to store the DCB an DCBE. Previously I allocated this storage using a STORAGE macro. Because the module is always invoked by COBOL programs I figured I could also use LE services to allocate this storage. If I code

Re: Allocating- and deallocating storage on the CEEEDBBEHP

2012-03-06 Thread Steve Comstock
On 3/6/2012 1:18 AM, Fred van der Windt wrote: I have an assembler module that reads files and needs storage below the 16M line to store the DCB an DCBE. Previously I allocated this storage using a STORAGE macro. Because the module is always invoked by COBOL programs I figured I could also use

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Micheal Butz
Please explain I/O should not be done to DREF using DREF storage as buffer area for I/O When I used sysplex IXG macros to obtain member information the doc said use DREF storage -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Edward

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Edward Jaffe
On 2/22/2012 12:51 AM, Micheal Butz wrote: Please explain I/O should not be done to DREF using DREF storage as buffer area for I/O Anything referenced by the I/O channel program should be fixed. -- Edward E Jaffe Phoenix Software International, Inc 831 Parkview Drive North El Segundo, CA

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Bill Fairchild
will not be able to find some of the data that was read. In general, either of the above scenarios is double plus ungood. Depending on how the IXG macro works and on exactly what the doc said, it may be that the following is true: you code the IXG macro and point it to some DREF storage to use

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Micheal Butz
Normally when getting storage OBTAIN the default is subpool 0 which pageable GET DCB_ADDRESS,AREA_ADDRESS almost always AREA_ADDRESS is from subpool 0 ? -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Bill Fairchild Sent: Wednesday

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Bill Fairchild
I see we are no longer talking about IXG and DREF. The default can easily be overridden with the proper parameter to obtain other types of storage. If you are writing authorized code, you can OBTAIN storage with just about any attribute you can imagine. Yes, subpool 0 is pageable. When you

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Micheal Butz
: Re: Difference between DREF storage and Page fixed storage On 2/22/2012 12:51 AM, Micheal Butz wrote: Please explain I/O should not be done to DREF using DREF storage as buffer area for I/O Anything referenced by the I/O channel program should be fixed. -- Edward E Jaffe Phoenix Software

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Shmuel Metz (Seymour J.)
In 013d01ccf0e2$14a981b0$3dfc8510$@net, on 02/21/2012 at 04:45 PM, Micheal Butz michealb...@optonline.net said: Would any know the difference between (disabled reference storage) DREF e.g. subpool 215 and Page fixed storage e.g. subpool 223 DREF can be paged out to Expanded Storage; page

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Shmuel Metz (Seymour J.)
In of3c06c41b.65cd5283-on852579ac.002452e3-852579ac.00254...@us.ibm.com, on 02/22/2012 at 01:47 AM, Jim Mulder d10j...@us.ibm.com said: As long as you are nonswappable, either via the SRM attribute, or by holding the local lock, which prevents RCT Quiesce from proceeding. Otherwise, the

Re: Difference between DREF storage and Page fixed storage

2012-02-22 Thread Jim Mulder
As long as you are nonswappable, either via the SRM attribute, or by holding the local lock, which prevents RCT Quiesce from proceeding. Otherwise, the real frame backing a fixed page can change. Why doesn't that cause problems for I/O? Typically an access method does not obrain and

Difference between DREF storage and Page fixed storage

2012-02-21 Thread Micheal Butz
Hi, Would any know the difference between (disabled reference storage) DREF e.g. subpool 215 and Page fixed storage e.g. subpool 223 From what I understand DREF means the program is running disable for interrupts and thus no pagIing should occur so the doc say use DREF storage While fixed

Re: Difference between DREF storage and Page fixed storage

2012-02-21 Thread Art Celestini
DREF Storage is still pageable except that the system resolves page faults synchronously. There are some caveats, like when a page fault occurs and there is no suitable frame available. -ArtC At 04:45 PM 2/21/2012, Micheal Butz wrote: Hi, Would any know the difference between

Re: Difference between DREF storage and Page fixed storage

2012-02-21 Thread Edward Jaffe
On 2/21/2012 2:26 PM, Art Celestini wrote: DREF Storage is still pageable except that the system resolves page faults synchronously. There are some caveats, like when a page fault occurs and there is no suitable frame available. And, this is fully documented in the topic entitled, Obtaining

Re: Linux LVM vs z/OS SMS Storage Group

2012-02-21 Thread Shane Ginnane
On Mon, 20 Feb 2012 09:09:58 -0800, Edward Jaffe wrote: To grow LVM physical volumes in Linux for z (RHEL6) we had to one-by-one drain (pvmove) the volumes to be resized, remove from LVM, vary offline, dynamically grow, vary online, reformat and add back to LVM. If not enough free space is

Re: Difference between DREF storage and Page fixed storage

2012-02-21 Thread Chris Craddock
On Tue, Feb 21, 2012 at 3:45 PM, Micheal Butz michealb...@optonline.netwrote: Would any know the difference between (disabled reference storage) DREF e.g. subpool 215 and Page fixed storage e.g. subpool 223 From what I understand DREF means the program is running disable for interrupts

Re: Difference between DREF storage and Page fixed storage

2012-02-21 Thread Jim Mulder
Would any know the difference between (disabled reference storage) DREF e.g. subpool 215 and Page fixed storage e.g. subpool 223 From what I understand DREF means the program is running disable for interrupts and thus no pagIing should occur so the doc say use DREF storage While

Re: Difference between DREF storage and Page fixed storage

2012-02-21 Thread Edward Jaffe
On 2/21/2012 10:47 PM, Jim Mulder wrote: The operating system reserves the right to exchange the frame backing any DREF page (LSQA or SQA) at any time. Which is why I/O should not be done to DREF storage, only to fixed storage. -- Edward E Jaffe Phoenix Software International, Inc 831

Linux LVM vs z/OS SMS Storage Group

2012-02-20 Thread Edward Jaffe
On 2/20/2012 5:34 AM, John McKown wrote: On Mon, 2012-02-20 at 08:42 +0100, R.S. wrote: snip What is cool is that SMS storage group. Usually users do not see the volumes, they see dasd space. In case of shortage you can simply add some volumes to the group. You can even buy new box and simply

Getting the Storage Group name for a DASD volume.

2012-02-09 Thread McKown, John
I am updating an old DASD management program. It does a UCBSCAN to scan the online DASD volumes and an LSPACE to get the space information from them. I also get the Format 4 DSCB. I check DS4SMSFG to see if the volume is SMS managed or not. I would like to output the storage group name

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Norbert Friemel
or not. I would like to output the storage group name if it is. But I cannot find any indication of how to get that information. Cbttape file 492 ShowZos/ShowMvs Norbert Friemel -- For IBM-MAIN subscribe / signoff / archive access

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread McKown, John
Sent: Thursday, February 09, 2012 8:40 AM To: IBM-MAIN@bama.ua.edu Subject: Re: Getting the Storage Group name for a DASD volume. On Thu, 9 Feb 2012 08:13:19 -0600, McKown, John wrote: I am updating an old DASD management program. It does a UCBSCAN to scan the online DASD volumes

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Dennis Trojak
John, Checkout SHOWMVS. It makes a subsys call to SMS to do just that. Dennis -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of McKown, John Sent: Thursday, February 09, 2012 8:13 AM To: IBM-MAIN@bama.ua.edu Subject: Getting the Storage

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Dennis Trojak Sent: Thursday, February 09, 2012 9:47 AM To: IBM-MAIN@bama.ua.edu Subject: Re: Getting the Storage Group name for a DASD volume. John, Checkout SHOWMVS. It makes

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Scott Barry
[mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Dennis Trojak Sent: Thursday, February 09, 2012 9:47 AM To: IBM-MAIN@bama.ua.edu Subject: Re: Getting the Storage Group name for a DASD volume. John, Checkout SHOWMVS. It makes a subsys call to SMS to do just that. Dennis -Original Message- From

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Bill Fairchild
Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Dennis Trojak Sent: Thursday, February 09, 2012 9:47 AM To: IBM-MAIN@bama.ua.edu Subject: Re: Getting the Storage Group name for a DASD volume. John, Checkout SHOWMVS. It makes a subsys call to SMS to do just that. Dennis -Original

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread McKown, John
-MAIN@bama.ua.edu] On Behalf Of Scott Barry Sent: Thursday, February 09, 2012 10:27 AM To: IBM-MAIN@bama.ua.edu Subject: Re: Getting the Storage Group name for a DASD volume. The IDCAMS utility DCOLLECT has this functionality and it generates a useful output file for post-processing. Scott

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Rob Scott
@bama.ua.edu] On Behalf Of Bill Fairchild Sent: 09 February 2012 16:45 To: IBM-MAIN@bama.ua.edu Subject: Re: Getting the Storage Group name for a DASD volume. Presumably whoever coded the subsys call to SMS within SHOWMVS had access to some kind of doc (or to previously written working code, the author

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Shmuel Metz (Seymour J.)
In a6b9336cdb62bb46b9f8708e686a7ea00e924b3...@nrhmms8p02.uicnrh.dom, on 02/09/2012 at 08:13 AM, McKown, John john.mck...@healthmarkets.com said: I would like to output the storage group name if it is. I would look at the SSI mapping macros. They're mostly not GUPI, but should be reasonably

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Martin Packer
...@uk.ibm.com Twitter / Facebook IDs: MartinPacker Blog: https://www.ibm.com/developerworks/mydeveloperworks/blogs/MartinPacker From: Norbert Friemel nf.ibmm...@web.de To: IBM-MAIN@bama.ua.edu, Date: 09/02/2012 14:40 Subject: Re: Getting the Storage Group name for a DASD volume. Sent by: IBM Mainframe

Re: Getting the Storage Group name for a DASD volume.

2012-02-09 Thread Bill Soper
Hi, take a look at: http://www.cbttape.org/xephon/xephonm/mvs0206.pdf This seems to have doc and samples for the SMS subsys interface to do exactly what you're asking -- For IBM-MAIN subscribe / signoff / archive access

Re: DFRMM change Storage Group field on Dataset record

2012-02-07 Thread af dc
wrote: The storage group is assigned by your SMS storage routines and  it will be the one used for Storage Group. The Storage Group cannot be altered, it has to be assigned. Your Storage Admin person should know where these are how to update them. Thanks, Hervey -Original Message

Re: DFRMM change Storage Group field on Dataset record

2012-02-07 Thread Gonzalo Cengotita
escribió: Hello, can anyone tell me how can I change the storage group value on dataset record ?? When I do DATASET CHANGE using DFRMM ispf panels and provide dsn + volume the only DFSMS construct I can't change is Storage group, how do I change it ?? z/OS DFSMS V1 R12 Any hint

Re: DFRMM change Storage Group field on Dataset record

2012-02-07 Thread Mike Wood
rmm records the SG and other SMS constructs assigned during allocation. All of the SMS constructs recorded in rmm would normally match those sent outboard to the library. The construct names would match an outboard policy and establish the policies used by the library. Each time the volume is

Re: SMS/ISMF Pool Storage Group Screen(s)

2012-02-07 Thread Shmuel Metz (Seymour J.)
In 0969741506457681.wa.markmzelden@bama.ua.edu, on 02/06/2012 at 05:35 PM, Mark Zelden m...@mzelden.com said: MVS/ESA V3. But you could also order / install it with MVS/XA 2.2.3. Some features were not available in the initial versions. When did IGDZILLA come along? -- Shmuel

Re: SMS/ISMF Pool Storage Group Screen(s)

2012-02-07 Thread Gilbert Cardenas
that in this forum just yet. Since we don't have a z/os 1.9 lpar anymore, I can't verify it but as far as I'm aware, this setting was not in the definition/alter screens for ISMF storage pool screen when we were on 1.9. Someone was kind enough to respond offline and point out to me that: I believe you're

SMS/ISMF Pool Storage Group Screen(s)

2012-02-06 Thread Gilbert Cardenas
Can someone please clarify something for me. Apparently, there were some parameters that were introduced to SMS/ISMF and these parameters were not present in the 1.9 release but are there now in the 1.11 release. In particular I am talking about the Pool Storage Group Define or Alter screen(s

Re: SMS/ISMF Pool Storage Group Screen(s)

2012-02-06 Thread Hervey Martinez
, February 06, 2012 3:01 PM To: IBM-MAIN@bama.ua.edu Subject: SMS/ISMF Pool Storage Group Screen(s) Can someone please clarify something for me. Apparently, there were some parameters that were introduced to SMS/ISMF and these parameters were not present in the 1.9 release but are there now

Re: SMS/ISMF Pool Storage Group Screen(s)

2012-02-06 Thread Mark Jacobs
- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Gilbert Cardenas Sent: Monday, February 06, 2012 3:01 PM To: IBM-MAIN@bama.ua.edu Subject: SMS/ISMF Pool Storage Group Screen(s) Can someone please clarify something for me. Apparently, there were some parameters

DFRMM change Storage Group field on Dataset record

2012-02-06 Thread af dc
Hello, can anyone tell me how can I change the storage group value on dataset record ?? When I do DATASET CHANGE using DFRMM ispf panels and provide dsn + volume the only DFSMS construct I can't change is Storage group, how do I change it ?? z/OS DFSMS V1 R12 Any hint is apreciated. Many thx

Re: SMS/ISMF Pool Storage Group Screen(s)

2012-02-06 Thread Mike Schwab
On Mon, Feb 6, 2012 at 2:01 PM, Gilbert Cardenas gilbertcarde...@grocerybiz.com wrote: deleted We have been on z/os 1.11 since around Aug/Sept of last year and we were cruising along just fine until recently.  All of a sudden we have a pool filling up and not migrating datasets like they used

Re: SMS/ISMF Pool Storage Group Screen(s)

2012-02-06 Thread Mark Zelden
On Mon, 6 Feb 2012 15:24:44 -0500, Mark Jacobs mark.jac...@custserv.com wrote: Way before zOS. SMS was delivered in the ESA V4 time frame. Mark Jacobs MVS/ESA V3. But you could also order / install it with MVS/XA 2.2.3. IIRC, that was really the only difference between MVS/XA 2.2.0 and

Re: DFRMM change Storage Group field on Dataset record

2012-02-06 Thread Hervey Martinez
The storage group is assigned by your SMS storage routines and it will be the one used for Storage Group. The Storage Group cannot be altered, it has to be assigned. Your Storage Admin person should know where these are how to update them. Thanks, Hervey -Original Message- From

Re: DFRMM change Storage Group field on Dataset record

2012-02-06 Thread retired mainframer
You don't. Storage groups are assigned by the ACS routines if the dataset is assigned a storage class. Does it have meaning if the dataset is not disk resident? :: -Original Message- :: From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On :: Behalf Of af dc :: Sent

Re: How to enable Storage Protection Override?

2011-11-09 Thread Peter Relson
UserKey 9 can write into CICSKey 8? that cannot be correct as all DFH modules would be up for overwriting. Where would integrity be? FWIW, system integrity is not a factor since in the CICS case the key 9 user has permission to get into key 8 and do whatever a key 8 user can do. Reliability

Re: How to enable Storage Protection Override?

2011-11-09 Thread Lindy Mayfield
- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Peter Relson Sent: Wednesday, November 09, 2011 2:25 PM To: IBM-MAIN@bama.ua.edu Subject: Re: How to enable Storage Protection Override? UserKey 9 can write into CICSKey 8? that cannot be correct as all DFH modules would

Re: How to enable Storage Protection Override?

2011-11-09 Thread Rob Scott
8 Problem state programs 9 CICS user 10-15 n/a Note that (*) for reserved does not mean that you will find no users of storage in these keys. In is very common for system software products (from IBM and ISVs) to run with a non-problem state storage protect

Re: How to enable Storage Protection Override?

2011-11-09 Thread McKown, John
-Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Lindy Mayfield Sent: Wednesday, November 09, 2011 6:47 AM To: IBM-MAIN@bama.ua.edu Subject: Re: How to enable Storage Protection Override? I love following these discussions, though

Re: How to enable Storage Protection Override?

2011-11-09 Thread Shmuel Metz (Seymour J.)
In 295ed806ab479944b1217cc84a173de012a69...@nwt-s-mbx1.rocketsoftware.com, on 11/09/2011 at 01:30 PM, Rob Scott rsc...@rocketsoftware.com said: 6 VTAM and TCAM TIOC and VTIOC for TSO. -- Shmuel (Seymour J.) Metz, SysProg and JOAT ISO position; see

Re: How to enable Storage Protection Override?

2011-11-09 Thread Tony Harminc
)        6       VTAM and TCAM        7       IMS, DB2 and MQ        8       Problem state programs        9       CICS user        10-15   n/a Note that (*) for reserved does not mean that you will find no users of storage in these keys. In is very common for system software products

Re: How to enable Storage Protection Override?

2011-11-09 Thread Lindy Mayfield
Could this be done somehow when z/OS is running as a z/VM guest? -Original Message- On older hardware consoles it was easy to configure a display of CPU activity by key. On really old hardware (370/168 and the like), one could turn a knob to one of 17 positions, and see total usage,

Re: How to enable Storage Protection Override?

2011-11-09 Thread Ed Gould
Tony, This brings back old memories, it is also interesting, IMO. Way back just before MVS came out. We were looking into getting performance numbers. If you can remember back in MVT days each job ran in it#39;s own protect key (1-15 if memory serves me). we had purchased a hardware monitor

Re: How to enable Storage Protection Override?

2011-11-08 Thread Pearce, Colin E
Colin Pearce -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Phil Smith III Sent: Saturday, November 05, 2011 4:53 AM To: IBM-MAIN@bama.ua.edu Subject: How to enable Storage Protection Override? CICS uses a hardware facility called

Re: How to enable Storage Protection Override?

2011-11-08 Thread Phil Smith III
Pearce, Colin E wrote: UserKey 9 can write into CICSKey 8? that cannot be correct as all DFH modules would be up for overwriting. Where would integrity be? Key 9 is the Open key, in that any transaction running in any other key can write into Key 9, but NOT the other way round. S0C4 will

Re: How to enable Storage Protection Override?

2011-11-08 Thread Jim Mulder
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu wrote on 11/05/2011 11:13:29 PM: But apparently I should be able to freely switch between keys 8 9 using the SPKA instruction. I'm still not sure that is documented as GUPI or not. Yes, I'm a PITA about some of these things. Once burned,

Re: How to enable Storage Protection Override?

2011-11-07 Thread Bill Hecox
But apparently I should be able to freely switch between keys 8 9 using the SPKA instruction. I'm still not sure that is documented as GUPI or not. Yes, I'm a PITA about some of these things. Once burned, twice shy. If you are going to use the SPKA instruction, read the fine print. 'SPKA 8'

Re: How to enable Storage Protection Override?

2011-11-07 Thread Bill Fairchild
to remember to code all the EQU statemetns, inter alia. Bill Fairchild -Original Message- From: IBM Mainframe Discussion List [mailto:IBM-MAIN@bama.ua.edu] On Behalf Of Bill Hecox Sent: Monday, November 07, 2011 6:26 AM To: IBM-MAIN@bama.ua.edu Subject: Re: How to enable Storage Protection

Re: How to enable Storage Protection Override?

2011-11-07 Thread Phil Smith III
and THREADSAFE to get us off the QR. It turns out that the CEDA definition of the second-level program was EXECKEY(USER); changing it to EXECKEY(CICS) fixed our problem. Here's what we believe happened, depending on the STGPROT setting: With STGPROT=NO: - All storage was key 8

Re: How to enable Storage Protection Override?

2011-11-06 Thread Binyamin Dissen
On Sat, 5 Nov 2011 22:13:29 -0500 John McKown joa...@swbell.net wrote: :On Sat, 2011-11-05 at 18:43 -0400, Jim Mulder wrote: :snip : Let me reword that to say in the environments where problem state : application code would be running instead of in most cases. : The documentation is under

Re: How to enable Storage Protection Override?

2011-11-06 Thread Peter Relson
I believe it has been answered you do not need to enable it, it is always enabled by z/OS on all machines that support it (which is all machines on which z/OS runs). As with many queries, it would help to understand what you are trying to accomplish, because perhaps use of key 9 is not

Re: How to enable Storage Protection Override?

2011-11-05 Thread John McKown
in a normal, problem state, APF program. I thought MODESET might, but it doesn't. I guess that CICS does it via their magic SVC. On Fri, 2011-11-04 at 18:40 -0400, Jim Mulder wrote: CICS uses a hardware facility called Storage Protection Override to allow key 9 to store into key 8 (but not vice

Re: How to enable Storage Protection Override?

2011-11-05 Thread Bill Hecox
You can use MODSET KEY=ZERO to put yourself in KEY0. Then you can modify any storage you have access to which includes the operating system. This can be dangerous. If you modify the wrong area of memory you can cause other programs to fail and they will have a difficult time figuring out what

Re: How to enable Storage Protection Override?

2011-11-05 Thread John McKown
Hecox wrote: You can use MODSET KEY=ZERO to put yourself in KEY0. Then you can modify any storage you have access to which includes the operating system. This can be dangerous. If you modify the wrong area of memory you can cause other programs to fail and they will have a difficult time

Re: How to enable Storage Protection Override?

2011-11-05 Thread Binyamin Dissen
On Sat, 5 Nov 2011 09:18:33 -0500 Bill Hecox bill.he...@mail.com wrote: :You can use MODSET KEY=ZERO to put yourself in KEY0. Then you can modify any storage you have access to :which includes the operating system. This can be dangerous. If you modify the wrong area of memory you can cause

Re: How to enable Storage Protection Override?

2011-11-05 Thread Binyamin Dissen
On Fri, 4 Nov 2011 16:53:09 -0400 Phil Smith III li...@akphs.com wrote: :CICS uses a hardware facility called Storage Protection Override to allow :key 9 to store into key 8 (but not vice versa). The opposite. All PSW keys match key 9

Re: How to enable Storage Protection Override?

2011-11-05 Thread Jim Mulder
Perhaps the question should be: How do I get my program to run in PSW key 9? Other than the normal, privileged, SKPA instruction. Is the appropriate bit in CR3 (PKM portion) set to allow SPKA to set to key 9 by a problem state program? Doesn't appear to be. And I don't see a way to set the

Re: How to enable Storage Protection Override?

2011-11-05 Thread John McKown
On Sat, 2011-11-05 at 14:11 -0400, Jim Mulder wrote: Perhaps the question should be: How do I get my program to run in PSW key 9? Other than the normal, privileged, SKPA instruction. Is the appropriate bit in CR3 (PKM portion) set to allow SPKA to set to key 9 by a problem state program?

Re: How to enable Storage Protection Override?

2011-11-05 Thread Jim Mulder
IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu On Sat, 2011-11-05 at 14:11 -0400, Jim Mulder wrote: Perhaps the question should be: How do I get my program to run in PSW key 9? Other than the normal, privileged, SKPA instruction. Is the appropriate bit in CR3 (PKM portion) set to

Re: How to enable Storage Protection Override?

2011-11-05 Thread Edward Jaffe
On 11/5/2011 4:38 AM, John McKown wrote: Perhaps the question should be: How do I get my program to run in PSW key 9? Other than the normal, privileged, SKPA instruction. Is the appropriate bit in CR3 (PKM portion) set to allow SPKA to set to key 9 by a problem state program? Doesn't appear to

Re: How to enable Storage Protection Override?

2011-11-05 Thread John McKown
On Sat, 2011-11-05 at 18:43 -0400, Jim Mulder wrote: snip Let me reword that to say in the environments where problem state application code would be running instead of in most cases. The documentation is under the KEY and PKM parameter descriptions on the ATTACHX macro in Authorized

How to enable Storage Protection Override?

2011-11-04 Thread Phil Smith III
CICS uses a hardware facility called Storage Protection Override to allow key 9 to store into key 8 (but not vice versa). This is enabled on CICS startup via a parm in the SIT. How can an APF-authorized program enable this same facility for itself? Can't seem to find a macro or equivalent

Re: How to enable Storage Protection Override?

2011-11-04 Thread Phil Smith III
I wrote: CICS uses a hardware facility called Storage Protection Override to allow key 9 to store into key 8 (but not vice versa). This is enabled on CICS startup via a parm in the SIT. How can an APF-authorized program enable this same facility for itself? Can't seem to find a macro

Re: How to enable Storage Protection Override?

2011-11-04 Thread Jim Mulder
CICS uses a hardware facility called Storage Protection Override to allow key 9 to store into key 8 (but not vice versa). This is enabled on CICS startup via a parm in the SIT. How can an APF-authorized program enable this same facility for itself? Can't seem to find a macro or equivalent

Re: Storage usage in a job

2011-10-20 Thread Wayne Driscoll
OMEGAMON DB2 L3 Support/Development wdrisco(AT)us.ibm.com === From: Wayne Driscoll/Chicago/IBM@IBMUS To: IBM-MAIN@bama.ua.edu Date: 10/21/2010 03:28 PM Subject: Re: Storage usage in a job Sent by: IBM Mainframe Discussion List IBM-MAIN@bama.ua.edu So

Re: FW: CEE0813S Insufficient Storage

2011-08-24 Thread Elardus Engelbrecht
On Tue, 23 Aug 2011 11:10:24 -0300 HELIO helio.si...@rural.com.br wrote: :I increased the region 0M, 32M, 64M and after your e-mail I use 125M and :failed. After seeing all these replies - Just a wild guess: Are you perhaps being limited in SMFUSI or by MEMLIMIT? Otherwise a call to your

CEE0813S Insufficient Storage

2011-08-23 Thread HELIO
All list, I am running a job and I am getting the following message. CEE0813S Insufficient storage was available to satisfy a get storage (CEECZST) request. The traceback information could not be determined. It increased the region and failed. Can anyone help me? Thanks -- Hélio

Re: CEE0813S Insufficient Storage

2011-08-23 Thread Lizette Koehler
I am running a job and I am getting the following message. CEE0813S Insufficient storage was available to satisfy a get storage (CEECZST) request. The traceback information could not be determined. It increased the region and failed. Can anyone help me? Helio, Please

CEE0813S Insufficient Storage

2011-08-23 Thread HELIO
All list, I am running a job and I am getting the following message. CEE0813S Insufficient storage was available to satisfy a get storage (CEECZST) request. The traceback information could not be determined. It increased the region and failed. Can anyone help me? Thanks -- Hélio

Re: FW: CEE0813S Insufficient Storage

2011-08-23 Thread HELIO
. Em 23/08/2011 10:11, Lizette Koehler escreveu: -Original Message- From: Lizette Koehler [mailto:stars...@mindspring.com] Sent: Tuesday, August 23, 2011 8:23 AM To: 'IBM Mainframe Discussion List' Subject: RE: CEE0813S Insufficient Storage I am running a job and I am getting

Re: FW: CEE0813S Insufficient Storage

2011-08-23 Thread Crabtree, Anne D
Did you see this when googling? https://www-304.ibm.com/support/docview.wss?uid=swg21002585 It talks about running out of below the line storage... Anne D. Crabtree System Programmer WV Office of Technology Data Center 1900 Kanawha Blvd East Charleston, WV 25305 (304)558-5914 ext 58292 (304

Re: FW: CEE0813S Insufficient Storage

2011-08-23 Thread Steve Comstock
-mail I use 125M and failed. Em 23/08/2011 10:11, Lizette Koehler escreveu: -Original Message- From: Lizette Koehler [mailto:stars...@mindspring.com] Sent: Tuesday, August 23, 2011 8:23 AM To: 'IBM Mainframe Discussion List' Subject: RE: CEE0813S Insufficient Storage I am running

Re: FW: CEE0813S Insufficient Storage

2011-08-23 Thread Lizette Koehler
of DB2 you may need to upgrade. Was this program recently changed? If so, how. This might be a problem with the central storage, the size of the data being used, the amount of region on the job. What are you CEE Parms (CEEDOPT) for this program? I am interested in HEAP, TERMTHDACT, and STACK

Re: FW: CEE0813S Insufficient Storage

2011-08-23 Thread Binyamin Dissen
Message- : From: Lizette Koehler [mailto:stars...@mindspring.com] : Sent: Tuesday, August 23, 2011 8:23 AM : To: 'IBM Mainframe Discussion List' : Subject: RE: CEE0813S Insufficient Storage : : : I am running a job and I am getting the following message. : : CEE0813S Insufficient storage

Re: FW: CEE0813S Insufficient Storage

2011-08-23 Thread Sam Siegel
LE will provide storage based on the Amode of the calling program. See the Language environment documentation on how to use the CEEOPTS DD to generate a storage usage report. This will give detailed information on above and below the line storage usage by COBOL and other HLLs. On Tue, Aug 23

IGD06023I STORAGE GROUP ZFSCLASS IS NOT REFERENCED BY THE STORAGE GROUP ACS ROUTINE

2011-08-04 Thread Lim Ming Liang
Hi, I am new in DFSMS, trying to do a validate against my SCDS, got a warning msg IGD06023I STORAGE GROUP ZFSCLASS IS NOT REFERENCED BY THE STORAGE GROUP ACS ROUTINE But in Storage Group ACS routine as below; PROC STORGRP

Re: IGD06023I STORAGE GROUP ZFSCLASS IS NOT REFERENCED BY THE STORAGE GROUP ACS ROUTINE

2011-08-04 Thread Darth Keller
at the output of your translate. #1 is probably the most likely. HTH's ddk From: Lim Ming Liang limm...@unifi.my To: IBM-MAIN@bama.ua.edu Date: 08/04/2011 10:14 AM Subject:IGD06023I STORAGE GROUP ZFSCLASS IS NOT REFERENCED BY THE STORAGE GROUP ACS ROUTINE Sent by:IBM

Re: IGD06023I STORAGE GROUP ZFSCLASS IS NOT REFERENCED BY THE STORAGE GROUP ACS ROUTINE

2011-08-04 Thread Gibney, Dave
] On Behalf Of Darth Keller Sent: Thursday, August 04, 2011 8:27 AM To: IBM-MAIN@bama.ua.edu Subject: Re: IGD06023I STORAGE GROUP ZFSCLASS IS NOT REFERENCED BY THE STORAGE GROUP ACS ROUTINE Your validate seems to be indicating that this code is not actually part of your translated routines

  1   2   3   4   5   6   7   8   9   10   >