Re: Is True Skip-Sequential Processing Possible with RECFM=FB,DSORG=PS?

2023-11-12 Thread Martin Trübner
I wrote code that did it and it saved considerable time. Here is the setting/requirments the processing programs can not be changed. the program skips records till the first correct record is read- then does one after the other till out of range or EOF. The file is FBS (created under VSE w

Re: PC Interference from shredder Was: Kinda fun

2023-11-12 Thread Bernd Oppolzer
I like these stories. in the nineties I had similar problems with my new computer, which had external SCSI drives in a separate box, and a 1,5 meter SCSI cable between this box and the PC tower. A friend of mine who knows more about electrical engineering than I do came along to look for th

RACF, the FACILITY class, and z/XDC

2023-11-12 Thread David Cole
I've got a problem. Decades ago, I made some assumptions about RACF's FACILITY class that have turned out to be wrong. Currently, I'm working on implementing a new security rule for z/XDC, and the individual rules ("entities") can be up to 59 characters long. Decades ago, when I was porting z

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Gadi Ben-Avi
The longest profile name in FACILITY is 39 characters (At least in z/OS v2.3) I would say that if you need something longer, you should create a dedicated class with the properties you want. -Original Message- From: IBM Mainframe Discussion List On Behalf Of David Cole Sent: יום א 12 נ

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Gadi Ben-Avi
The properties for the supplied classes in RACF can be found here https://www.ibm.com/docs/en/zos/2.3.0?topic=reference-supplied-class-descriptor-table-entries You can easily add new classes by adding a profile in the CDT class. -Original Message- From: IBM Mainframe Discussion List On B

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Binyamin Dissen
You should make your own class. Classes can be dynamically added by adding to the CDT class. On Sun, 12 Nov 2023 05:40:03 -0500 David Cole wrote: :>I've got a problem. Decades ago, I made some assumptions about RACF's :>FACILITY class that have turned out to be wrong. :>Currently, I'm working

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Rob Scott
Another option is the XFACILIT class which supports much longer profile names ( up to 246 characters). Rob Scott Rocket Software Sent from Samsung Mobile on O2 Sent from Outlook for Android From: IBM Mainframe Discussion List on behalf of

Re: Well, I guess RESMGR is documented as only supporting 24/31 bit

2023-11-12 Thread Peter Relson
Paul G added >It does not check SYSSTATE AMODE64. > Don't be impatient. They're probably working on it. In this case "they" are not. If someone had previously asked for it, it would have possibly already been done. It's always better to ask formally than to assume that mentioning something on

Re: CEE3512S / CSV034I

2023-11-12 Thread Henri Kuiper
Denis, Confirming the STC running the Python code did not have enough "ASSIZEMAX". Easy fix, happy customer :) For those looking to do JWT signage, and running into same problems, I'll paste pieces of relevant python here... to feed future 'SRCHFOR'-actions :) *Bash actions to create the key

Re: PC Interference from shredder Was: Kinda fun

2023-11-12 Thread Paul Gilmartin
On Sun, 12 Nov 2023 10:48:19 +0100, Bernd Oppolzer wrote: > >At some point he looked out of the window and he saw the radar tower, >which is about >half a mile away and is needed for the traffic control of the airport >nearby. So he speculated > A co-worker had worked for the FAA at a commercial ai

Re: Kinda fun

2023-11-12 Thread Paul Gilmartin
On Sun, 12 Nov 2023 00:01:59 -0600, g...@gabegold.com wrote: > >User brought odd printout (1403 or 3211) to system programming, asked what >happened. It showed two output streams overprinted -- like a double exposed >photo. Clearly impossible, but there it was. > I once received a punched binary

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Ed Jaffe
On 11/12/2023 3:02 AM, Binyamin Dissen wrote: You should make your own class. Classes can be dynamically added by adding to the CDT class. This is extra hassle at client sites and IMHO should be avoided. Long ago, we suggested clients create an "EJES" class for our (E)JES product. There are

Re: PC Interference from shredder Was: Kinda fun

2023-11-12 Thread Lloyd Fuller
When I was at Orange Coast College in the mid-70s, we had a 370-155 that had non-IBM memory.  The College had a microwave link between the Costa Mesa campus and the Huntington Beach campus.  The microwave link was at the campus library, and they fired it up about 9AM each week-day.  The computer

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Binyamin Dissen
On Sun, 12 Nov 2023 07:13:03 -0800 Ed Jaffe wrote: :>On 11/12/2023 3:02 AM, Binyamin Dissen wrote: :>> You should make your own class. :>> :>> Classes can be dynamically added by adding to the CDT class. :> :>This is extra hassle at client sites and IMHO should be avoided. With the CDT class, it

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Ed Jaffe
On 11/12/2023 10:30 AM, Binyamin Dissen wrote: With the CDT class, it is just a few RACF commands. RDEFINE CDT class + CDTINFO(+ MAXLENGTH(100) + RACLIST(ALLOWED) + GENLIST(ALLOWED)+ FIRST(ALPHA,NATIONAL,NUMERIC)

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Binyamin Dissen
On Sun, 12 Nov 2023 10:46:36 -0800 Ed Jaffe wrote: :>On 11/12/2023 10:30 AM, Binyamin Dissen wrote: :>> With the CDT class, it is just a few RACF commands. :>> RDEFINE CDT class + :>> CDTINFO(+ :>> MAXLENGTH(100) + :>> RACLIST(ALLOWED) + :>>

Re: RACF, the FACILITY class, and z/XDC

2023-11-12 Thread Phil Smith III
Ed Jaffe recommended against creating a SAF class. I'll respectfully suggest that it's not that hard. First, if you do, IBM told us, "Start the class name with a dollar sign-we'll never use those". Of course you could collide with another vendor, but that's unlikely. We've had customers doing s

Re: Is True Skip-Sequential Processing Possible with RECFM=FB,DSORG=PS?

2023-11-12 Thread Attila Fogarasi
Don't forget about XDAP ... that still works, as an alternative to using access methods :) Of course XDAP is 24-bit only (for the most part). On Sun, Nov 12, 2023 at 8:11 PM Martin Trübner < 047eec287bd9-dmarc-requ...@listserv.ua.edu> wrote: > I wrote code that did it and it saved considerabl

erroneous BLS18100I message

2023-11-12 Thread Joseph Reichman
While waiting for a reply for previous post I noticed didn't the following byte set as it was dsected After inserting the following instruction MVI MAPRST,MAPRST64 I got the following message tracing VERBX routine under TEST BLS18100I ASID(X'0040') 01EF_8550 not available Yet when I do

Re: Is True Skip-Sequential Processing Possible with RECFM=FB,DSORG=PS?

2023-11-12 Thread Jon Perryman
On Sat, 11 Nov 2023 18:43:18 -0600, Michael Oujesky wrote: >Does seek() actually do a direct access? Or read, but skip the >records from the start of the file? seek() only reads the physical record containing the byte position. This is also true on Unix where physical records are called secto

Re: UNIX "BLKSIZE"?

2023-11-12 Thread Jon Perryman
On Sat, 11 Nov 2023 21:44:51 -0600, Paul Gilmartin wrote: >Suppose I am writing with QSAM/BSAM to a UNIX file allocated >RECFM=FB,LRECL=80,FILEDATA=BINARY,PATH=... >Should I specify: >o BLKSIZE=80 for minimum latency for other jobs doing "tail -f"? z/OS Unix filesystems are linear datasets. Unle

Re: unable to access IPCS 64 bit storage using Storage map service

2023-11-12 Thread Jon Perryman
On Sat, 11 Nov 2023 21:34:57 -0500, Joseph Reichman wrote: >In IPCS I did a list subcommand from the value of double word value in >TSTAUVCT and it had the values I was expecting however using storage map >services I get zeros in the area pointed to by XMSPBUF My suggestion would be to start f

Re: unable to access IPCS 64 bit storage using Storage map service

2023-11-12 Thread Joseph Reichman
Joe Reichman On Mon, Nov 13, 2023 at 2:55 AM Jon Perryman wrote: > On Sat, 11 Nov 2023 21:34:57 -0500, Joseph Reichman > wrote: > > >In IPCS I did a list subcommand from the value of double word value in > >TSTAUVCT and it had the values I was expecting however using storage map > >services I

Re: unable to access IPCS 64 bit storage using Storage map service

2023-11-12 Thread Joseph Reichman
Joe Reichman On Mon, Nov 13, 2023 at 2:56 AM Joseph Reichman wrote: > > Joe Reichman > > > On Mon, Nov 13, 2023 at 2:55 AM Jon Perryman wrote: > >> On Sat, 11 Nov 2023 21:34:57 -0500, Joseph Reichman < >> reichman...@gmail.com> wrote: >> >> >In IPCS I did a list subcommand from the value of do