Re: PDS/PDSE Member information

2023-06-15 Thread Seymour J Metz
See the expansion of IGWSMDE. From: IBM Mainframe Discussion List on behalf of Paul Gilmartin <042bfe9c879d-dmarc-requ...@listserv.ua.edu> Sent: Thursday, June 15, 2023 4:07 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: PDS/PDSE Member information On

Re: PDS/PDSE Member information

2023-06-15 Thread Paul Gilmartin
On Thu, 15 Jun 2023 19:16:25 +, Seymour J Metz wrote: >ISPF stats are the same for PDS and PDSE. For additional PDSE data you need >DESERVE. Does DESERV (DESERVE?) return more data for a PDSE than for a PDS? Where can I find this additional data described? Does DESERV return FAMS

Re: PDS/PDSE Member information

2023-06-15 Thread Seymour J Metz
ISPF stats are the same for PDS and PDSE. For additional PDSE data you need DESERVE. From: IBM Mainframe Discussion List on behalf of Schmitt, Michael Sent: Thursday, June 15, 2023 2:53 PM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: PDS/PDSE Member

Re: PDS/PDSE Member information

2023-06-15 Thread Schmitt, Michael
Extended stats are in the same user data in the directory block. I don't know why reading from the PDSE simulated directory would be any different from reading from the real PDS directory. -Original Message- From: IBM Mainframe Discussion List On Behalf Of Steve Thompson Sent:

Re: After installing z/OS 2.5 , we are not able to connect IP.

2023-06-15 Thread Ed Jaffe
On 6/15/2023 8:26 AM, Manoj Bandi wrote: Am getting connection refused issue, after installing z/OS 2.5. Anybody any idea about z/OS 2.5 networking changes ? With z/OS 2.4 amble to connect. Am not a networking person, in my shop networking person not able to resolve the issue. Didn't they

Re: PDS/PDSE Member information

2023-06-15 Thread Kirk Wolf
If you have Co:Z, you can use either Co:Z SFTP (remotely) or locally using the "pdsdir" UNIX shell command. Here's the latter, running in a batch UNIX shell: // EXEC PGM=COZBATCH //STDIN DD * pdsdir vendor.parmlib // Output: NameSize Created Changed ID ALLJ2

Re: After installing z/OS 2.5 , we are not able to connect IP.

2023-06-15 Thread Pew, Curtis G
On Jun 15, 2023, at 10:26 AM, Manoj Bandi <03ba0b4ca1cc-dmarc-requ...@listserv.ua.edu> wrote: Am getting connection refused issue, after installing z/OS 2.5. Anybody any idea about z/OS 2.5 networking changes ? With z/OS 2.4 amble to

Re: PDS/PDSE Member information

2023-06-15 Thread Steve Thompson
Jack: As others have said, ISPF LM modules will do the JOB from REXX. Caveat: I did not have access to the CBT Tape code, which may work and be simpler to use. I suggest that you use them because if the PDSE has extended stats, I don't think the pseudo directory block read will work (but I

Re: PDS/PDSE Member information

2023-06-15 Thread Jack Zukt
Thank you very much Lyonel, I will read it, Best wishes Jack On Thu, 15 Jun 2023 at 17:22, Lionel B. Dyck wrote: > Here is a blog I wrote not long ago with several options with code > examples. > > >

Re: PDS/PDSE Member information

2023-06-15 Thread Lionel B. Dyck
Here is a blog I wrote not long ago with several options with code examples. https://community.ibm.com/community/user/ibmz-and-linuxone/blogs/ray-mullins/2023/02/09/tso-rexx-productivity Lionel B. Dyck <>< Website: https://www.lbdsoftware.com Github: https://github.com/lbdyck “Worry more about

Re: PDS/PDSE Member information

2023-06-15 Thread Jack Zukt
That would be a nice way to do it but, unfortunately, we do not have TSO PIPES :( Best Wishes Jack On Thu, 15 Jun 2023 at 17:13, Lionel B. Dyck wrote: > If you have TSO Pipes then that will work as well: > > /* rexx */ > 'pipe listispf test.pds | cons' > Exit > > > A01.01 20230428

Re: PDS/PDSE Member information

2023-06-15 Thread Lionel B. Dyck
If you have TSO Pipes then that will work as well: /* rexx */ 'pipe listispf test.pds | cons' Exit A01.01 20230428 20230602 05:58 1 0 0 LBDYCK AA 01.00 20230602 20230602 06:02 2 2 0 LBDYCK AAA 01.00 20230602 20230602 06:02 2 2 0

Re: PDS/PDSE Member information

2023-06-15 Thread Jack Zukt
Thank Kolusu, Unfortunately this has to be run in batch. Best wishes, Jack On Thu, 15 Jun 2023 at 16:58, Sri h Kolusu wrote: > >> Is there a way to get the PDS/PDSE member information, namely, > member/userid/last change date in batch? I have not been able to get to it > using rexx. > > Jack, >

Re: PDS/PDSE Member information

2023-06-15 Thread Sri h Kolusu
>> Is there a way to get the PDS/PDSE member information, namely, >> member/userid/last change date in batch? I have not been able to get to it >> using rexx. Jack, Not a batch solution per se , but you can get the stats to a dataset quite easily. Open the dataset in browse/view/edit and

Re: PDS/PDSE Member information

2023-06-15 Thread Paul Gilmartin
On Thu, 15 Jun 2023 16:10:20 +0100, Jack Zukt wrote: > >Is there a way to get the PDS/PDSE member information, namely, >member/userid/last change date in batch? I have not been able to get to it >using rexx. > Has anyone tried DSFS with ADDRESS SYSCALL STAT? -- gil

Re: PDS/PDSE Member information

2023-06-15 Thread Jack Zukt
Thank you all for all the answers. Lyonel, your rexx is just what I need for now. I already downloaded de file182 from the CBT but that will need a lot more reading before I can use it. Best regards, Jack On Thu, 15 Jun 2023 at 16:40, Lionel B. Dyck wrote: > Here is an example of using LMMLIST

Re: PDS/PDSE Member information

2023-06-15 Thread Lionel B. Dyck
Here is an example of using LMMLIST - of course you'll have to configure you batch TMP to have the correct ISPF DD's: /* REXX */ arg dsn /* --- * | Using ISPF Library Services | * --- */

Re: PDS/PDSE Member information

2023-06-15 Thread Lionel B. Dyck
The PDS command does a very nice job - here is an example READY PDS TEST.PDS HI : PDS230I MEMBER VER.MOD CREATED LAST MODIFIED SIZE

Re: PDS/PDSE Member information

2023-06-15 Thread David Spiegel
Hi Gil, LMMSTATS to change the information, LMMDISP to display it. Regards, David On 2023-06-15 11:20, Paul Gilmartin wrote: On Thu, 15 Jun 2023 16:10:20 +0100, Jack Zukt wrote: Is there a way to get the PDS/PDSE member information, namely, member/userid/last change date in batch? I have

Re: PDS/PDSE Member information

2023-06-15 Thread Radoslaw Skorupka
W dniu 15.06.2023 o 17:20, Paul Gilmartin pisze: On Thu, 15 Jun 2023 16:10:20 +0100, Jack Zukt wrote: Is there a way to get the PDS/PDSE member information, namely, member/userid/last change date in batch? I have not been able to get to it using rexx. I've done this by allocating the PDS

Re: PDS/PDSE Member information

2023-06-15 Thread David Spiegel
Hi Jack, Please see PDS Command Processor (CBT File 182). In particular, the "D" Command (against a member) will give you what you need. If you don't like Public Domain Software, please look at ISPF Services LMMDISP

Re: PDS/PDSE Member information

2023-06-15 Thread Schmitt, Michael
It is not difficult to do in assembler. And it is *possible* to do it in REXX. 1. Allocate the PDS to a DD as LRECL(256) DSORG(PS). 2. EXECIO to read it. Now you can use REXX to process through the PDS directory, and extract the member name, TTR, user data length, and user data (i.e. the

After installing z/OS 2.5 , we are not able to connect IP.

2023-06-15 Thread Manoj Bandi
Hi All, Am getting connection refused issue, after installing z/OS 2.5. Anybody any idea about z/OS 2.5 networking changes ? With z/OS 2.4 amble to connect. Am not a networking person, in my shop networking person not able to resolve the issue. Thanks in advance for your Help. Thanks &

Re: PDS/PDSE Member information

2023-06-15 Thread Paul Gilmartin
On Thu, 15 Jun 2023 16:10:20 +0100, Jack Zukt wrote: > >Is there a way to get the PDS/PDSE member information, namely, >member/userid/last change date in batch? I have not been able to get to it >using rexx. > I've done this by allocating the PDS DSORG=PS,RECFM=F,LRECL=256 reading the directory

Re: PDS/PDSE Member information

2023-06-15 Thread Lionel B. Dyck
Not with standard TSO services - but if you want to run batch ISPF then you can with ISPF services. You can also use tools like the PDS command (www.cbttape.org file 182) to do it. Lionel B. Dyck <>< Website: https://www.lbdsoftware.com Github: https://github.com/lbdyck “Worry more about your

Re: PDS/PDSE Member information

2023-06-15 Thread Tom Marchant
I think you mean ISPF statistics. That would be in the user data area in the directory entries. You might try the LM ISPF services. -- Tom Marchant On Thu, 15 Jun 2023 16:10:20 +0100, Jack Zukt wrote: >Hi all, > >Is there a way to get the PDS/PDSE member information, namely,

PDS/PDSE Member information

2023-06-15 Thread Jack Zukt
Hi all, Is there a way to get the PDS/PDSE member information, namely, member/userid/last change date in batch? I have not been able to get to it using rexx. Regards, Jack -- For IBM-MAIN subscribe / signoff / archive access

Re: z/OSMF

2023-06-15 Thread Shaffer, Terri
No it was Chase bank, When I left in 2016, I think we where at 105 lpars, So not sure how many there are today. Ms Terri E Shaffer Senior Systems Engineer, z/OS Support: ACIWorldwide – Telecommuter H(412-766-2697) C(412-519-2592) terri.shaf...@aciworldwide.com -Original Message- From:

Re: z/OSMF

2023-06-15 Thread Bob Bridges
117 LPARs? Would that be State Farm in Bloomington IL, by any chance? I don't remember the exact number when I was there, but I think it was on that order. --- Bob Bridges, robhbrid...@gmail.com, cell 336 382-7313 /* As mere biological entities, each with its separate will to live and to

Re: z/OSMF

2023-06-15 Thread Shaffer, Terri
It’s a lot deeper than what you identified, I have been in shops as large as 117 lpars and a 12-way sysplex to just 1-2 lpars, so the size of the complex really doesn’t matter. Many things bother me about z/OSMF besides being as slow as molasses, but it’s the behind the scenes actions on what

Re: Unix file system ownership

2023-06-15 Thread Colin Paice
I know someone like that - he was profoundly red/green colour blind. He had to mark things in the laboratory, for example one mark or two marks, so he could tell the difference. He enjoyed sailing, and was glad that navigational marks are different shapes as well as different colours so he