Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread willie bunter
I had this problem years ago.  If I remember correctly I restored the components of the VSAM dsn (.DATA & .INDEX) and then I recataloged the cluster.You have to ensure that the right cluster name is used.  I have seen strange VSAM dsn names used for the cluster but no matching name for the com

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread rpinion865
The VSAM dataset is cataloged in a ICF catalog. They are not SYS1.anything. The dataset is a SMPE CSI dataset cataloged in a user ICF catalog. I can restore non-VSAM datasets with the same HLQ of the VSAM dataset. "Confidentially doc, I am the wabbit." Bugs Bunny Sent from Proton Mail Andro

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread rpinion865
The ICF catalog is active on the system where the backup and restore are done. "Confidentially doc, I am the wabbit." Bugs Bunny Sent from Proton Mail Android Original Message On 1/25/25 7:42 AM, rpinion865 <042a019916dd-dmarc-requ...@listserv.ua.edu> wrote: > The VSAM

Two related C macro questions

2025-01-25 Thread Charles Mills
IBM "Classic" XLC C++ V2R5 The fundamental problem I am trying to solve is creating bi-modal source code that will support UNIX dates beyond 2038; or alternatively will build under z/OS V2R2. I have the usual sort of #if/#else/#endif structure based on a macro named Y2038_LEV2R3. I want to set

Re: Rexx invoking bpxwunix

2025-01-25 Thread esst...@juno.com
Thanks, I will try it -- Original Message -- From: Lionel B Dyck <057b0ee5a853-dmarc-requ...@listserv.ua.edu> To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Rexx invoking bpxwunix Date: Sat, 25 Jan 2025 09:39:06 -0600 try this call bpxwunix 'cd /test/app/cics/java/work_dir/ && ls-

AT-TLS FTP to RedHat 9 wsftp server

2025-01-25 Thread Ed Jaffe
Hello, AT-TLS FTP is working just fine in z/OS, however we're having an issue connecting to our RedHat 9 wsftp server. At an early point in TLS handshaking, the z/OS client is proposing the "secp521r1" curve which is being rejected by wsftp. It is looking for "secp256r1," which we found hard

Rexx invoking bpxwunix

2025-01-25 Thread esst...@juno.com
.Hello -.Anyone with experience with Rexx calling bpxwunix ?I am not a Rexx person -.The Rexx code below works fine, I even have another version of the codethat writes the directory list to a sequential file -.The issue is the ls -la commend always list my USS Home directory -It does not lis

Re: Rexx invoking bpxwunix

2025-01-25 Thread Paul Gilmartin
On Sat, 25 Jan 2025 15:34:23 GMT, essteam wrote: >call to bpxwunix to honor the directory I want to point to ? . -/* REXX */Say >'REX2 Entered' >call bpxwunix 'cd /test/app/cics/java/work_dir/',,out. >call bpxwunix 'ls -la',,out. > As LBD hinted, each call to pxwunix opens a fresh execution e

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread MVS JES2
EMC utility to rename and catalog VSAM+NonVSAM files after Snapped; also works with IBM disks after full volume FlashCopy. //EMCTFU EXEC PGM=EMCTFU //TFINPUT DD * PROCESS VOLSER=VOLSR1,BOTH PROCESS VOLSER=VOLSR2,BOTH SRCCAT DEFAULT=NO,DIRECT=YES RENAME SRCHLQ,TRGHLQ,CATALOG=CATALOG.NAME On Sat, Ja

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread Mike Schwab
A LISTCAT from the source system should be included in the backup. If you search the listing, you will find the components and can build the recatalog from there. On Sat, Jan 25, 2025 at 8:05 AM rpinion865 <042a019916dd-dmarc-requ...@listserv.ua.edu> wrote: > > Bingo, give that man a cigar.

Re: Rexx invoking bpxwunix

2025-01-25 Thread Paul Gilmartin
On Sat, 25 Jan 2025 10:37:46 -0600, Paul Gilmartin wrote: > >BTW, 'out.' is a REXX string passed to BPXWUNIX, and >most safely quoted. > I've submitted a "thumbs Down" feedback on several arguments to BPXWUNIX are REXX strings and mo

Re: Rexx invoking bpxwunix

2025-01-25 Thread esst...@juno.com
Getting Better - Thank You -- Original Message -- From: Lionel B Dyck <057b0ee5a853-dmarc-requ...@listserv.ua.edu> To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: Rexx invoking bpxwunix Date: Sat, 25 Jan 2025 14:09:30 -0600 This worked for me cmd = 'cd /etc && ls -al' call bpxwuni

Re: Rexx invoking bpxwunix

2025-01-25 Thread Paul Gilmartin
On Sat, 25 Jan 2025 20:13:16 +, Farley, Peter wrote: >Lionel, > >Doesn’t the STDOUT parameter to BPXWUNIX need to be a string that contains the >stem value and not the stem itself? I.E.: > > >call bpxwunix 'cd /etc/ && ls -al',,’list.’ > >Note the quotes around the stem value. > The quotes

Re: AT-TLS FTP to RedHat 9 wsftp server

2025-01-25 Thread Ed Jaffe
On 1/25/2025 7:04 PM, Gord Tomlin wrote: On 2025-01-25 14:36 PM, Ed Jaffe wrote: At an early point in TLS handshaking, the z/OS client is proposing the "secp521r1" curve which is being rejected by wsftp. It is looking for "secp256r1," which we found hard-wired in the wsftp source code. Any cha

Re: Rexx invoking bpxwunix

2025-01-25 Thread esst...@juno.com
Hello LionelI issued call bpxwunix 'cd /test/app/cics/java/work_dir/ && ls-la',,out. . ANd I received the same results; where the data returned is my Home Directory and NOT the directory i requested. . Thanks -- Original Message -- From: Lionel B Dyck <057b0ee5a853-dmarc-requ.

Re: Rexx invoking bpxwunix

2025-01-25 Thread Lionel B Dyck
This worked for me cmd = 'cd /etc && ls -al' call bpxwunix cmd,,out. as did this call bpxwunix 'cd /etc/ && ls -al',,list. hope this helps On Sat, Jan 25, 2025 at 1:47 PM esst...@juno.com wrote: > > Hello LionelI issued call bpxwunix 'cd /test/app/cics/java/work_dir/ && > ls-la',,out. > . >

Re: Rexx invoking bpxwunix

2025-01-25 Thread Farley, Peter
Lionel, Doesn’t the STDOUT parameter to BPXWUNIX need to be a string that contains the stem value and not the stem itself? I.E.: call bpxwunix 'cd /etc/ && ls -al',,’list.’ Note the quotes around the stem value. Peter From: IBM Mainframe Discussion List On Behalf Of Lionel B Dyck Sent: Sa

Re: Rexx invoking bpxwunix

2025-01-25 Thread Lionel B Dyck
try this call bpxwunix 'cd /test/app/cics/java/work_dir/ && ls-la',,out. On Sat, Jan 25, 2025 at 9:36 AM esst...@juno.com wrote: > > .Hello -.Anyone with experience with Rexx calling bpxwunix ?I am not a Rexx > person -.The Rexx code below works fine, I even have another version of the > codet

Re: z/OS 2.1 & 2.2 on z16?

2025-01-25 Thread Ed Jaffe
On 1/24/2025 9:59 PM, Brian Westerman wrote: No problem, assuming you are a IBM-MAIN member, if you look at the from on this page, my address should be right there for you to see. These days, the LISTSERV is obscuring email addresses. -- Phoenix Software International Edward E. Jaffe 831 Park

Re: Rexx invoking bpxwunix

2025-01-25 Thread Paul Gilmartin
On Sat, 25 Jan 2025 19:45:48 GMT, esst...@juno.com wrote: >Hello LionelI issued call bpxwunix 'cd /test/app/cics/java/work_dir/ && >ls-la',,out. >. >ANd I received the same results; where the data returned is my Home Directory >and NOT the directory >i requested. >. That's puzzling. You appear

Re: Rexx invoking bpxwunix

2025-01-25 Thread Paul Gilmartin
On Sat, 25 Jan 2025 19:45:48 GMT, esst...@juno.com wrote: >Hello LionelI issued call bpxwunix 'cd /test/app/cics/java/work_dir/ && >ls-la',,out. >. >ANd I received the same results; where the data returned is my Home Directory >and NOT the directory >i requested. >. /* REXX Add some instrumentat

Re: Mainframe physical tape backup

2025-01-25 Thread Brian Westerman
I disagree, physical tape generation is not efficient (cost-wise or in reality man-power wise). You can Rsync most VTS boxes, and most also have built in DR recovery options to allow offloading copies of the data. There are fairly inexpensive VTS's (like a z/VT from Optica) which allows you

Re: AT-TLS FTP to RedHat 9 wsftp server

2025-01-25 Thread Colin Paice
The client usually sends up a list of acceptable cipher specs, and the server picks one. Perhaps you need to change the client to add more. For example from my definitions TTLSCipherParms AZFCipherParms { V3CipherSuites TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 V3CipherSuites TLS_ECDHE_ECDSA_WIT

Re: OMVS

2025-01-25 Thread Attila Fogarasi
OpenEdition was introduced in MVS 4.3 in 1994 but was an almost unusable subset, it only had POSIX support, Kern shell and dbx debugger. MVS 5.1 less than a year later added TCP/IP 3.1 and NFS, making it borderline usable. In 1996 along came OS/390 V1R2 which rebranded it as USS along with adding

Re: Two related C macro questions

2025-01-25 Thread Colin Paice
You might try DEF (Y2038_LEV2R3) or DEF (Y2038_LEV2R3=1)instead of DEF (Y2038_LEV2R3=).DEF (Y2038_LEV2R3=) is correct syntax, but maybe there is a bug. Colin On Sat, 25 Jan 2025 at 19:44, Charles Mills wrote: > IBM "Classic" XLC C++ V2R5 > > The fundamental problem I am trying to s

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread Radoslaw Skorupka
IMHO no. Restore should be *easy*. Backup can be a little bit more complex and the most complex can be design. -- Radoslaw Skorupka Lodz, Poland W dniu 25.01.2025 o 18:36, Mike Schwab pisze: A LISTCAT from the source system should be included in the backup. If you search the listing, you wil

Re: AT-TLS FTP to RedHat 9 wsftp server

2025-01-25 Thread Gord Tomlin
On 2025-01-25 14:36 PM, Ed Jaffe wrote: At an early point in TLS handshaking, the z/OS client is proposing the "secp521r1" curve which is being rejected by wsftp. It is looking for "secp256r1," which we found hard-wired in the wsftp source code. Any chance "secp521r1" contains a typo? Like 521

Re: z/OS 2.1 & 2.2 on z16?

2025-01-25 Thread Brian Westerman
Is it just for some users, I see it fine for every entry. -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread Brian Westerman
Doesn't IBM have a similar utility called VVDSFIX or FIXVVDS or something? -- For IBM-MAIN subscribe / signoff / archive access instructions, send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread Radoslaw Skorupka
My guess: You dumped a volume. Physical dump. But your volume contained no catalogued datasets. This is not source volume, but a snap (clone) of it. Different volser I guess. VSAM file is not just a bunch of extents on disk, fully described in VTOC. VSAM comprise of components *and* ICF entries.

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread rpinion865
Bingo, give that man a cigar. You are right, the source volume is snapped to a BCP volume, different volser, and the backup is taken of the BCP volume. That explains it, the other poster pointed out not properly cataloged VSAM. "Confidentially doc, I am the wabbit." Bugs Bunny Sent from Prot

Re: Mainframe physical tape backup

2025-01-25 Thread Radoslaw Skorupka
W dniu 25.01.2025 o 07:19, Brian Westerman pisze: You could have you network attached storage located anywhere you want. No. TVC aka disk cache in VTS (most vendors) cannot be any storage you choose. Obviously you have not thought this through. Moving physical tapes costs money and puts

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread Radoslaw Skorupka
Since I earned a cigar, I complement: I vaguely remember there was an EMC (?) tool to update VVDS entries after a snap. ;-) A quick jobstep would solve the problem. -- Radoslaw Skorupka Lodz, Poland W dniu 25.01.2025 o 15:05, rpinion865 pisze: Bingo, give that man a cigar. You are right, th

Re: ADRDSSU DUMP/RESTORE

2025-01-25 Thread Willy Jensen
I have used Rocket's Catalog RecoveryPlus in the past with great success to handle all sorts of ICF related issues, like updating VSDS. Highly recommended, but of cause comes with a pricetag. -- For IBM-MAIN subscribe / signoff