Re: Iebcopy rename hlq??

2022-10-20 Thread David Spiegel

Hi James,
You can use DFSMSdss to COPY with RENAME.
Here is an example:
//STEP001 EXEC PGM=ADRDSSU ,PARM='TYPRUN=NORUN'
//SYSPRINT DD  SYSOUT=*
//SYSIN    DD  *
  COPY DS(    -
INCL(   -
HLQ.X  -
)   -
)    -
RENUNC(    -
(HLQ.X  -
NEWHLQ.HLQ.X)  -
)    -
CAT -
STORCLAS(STANDARD) -
OPT(4) -
SHR -
SPHERE -
  TOL(ENQF)

- You can only COPY 255 Datasets in one step.
I have a series of ISPF Edit tricks to generate the commands and 
interleave them.

If you're interested, please PM me at dspiegel...@hotmail.com

Regards,
Davis

On 2022-10-20 18:04, rpinion865 wrote:

Do you have FDR?

Sent from Proton Mail mobile

 Original Message 
On Oct 20, 2022, 5:51 PM, James Cradesh wrote:


What’s the solution to copying (actually moving)/ renaming hundreds of sms 
managed datasets? I’ve looked for rexx execs to do this but I’ve not come 
across anything. I’ve tried dfdss but changing the hlq of sms datasets doesn’t 
seem to work for me since I want to add a hlq not actually rename the hlq For 
example sys2 to newhlq.sys2. Perhaps a two step approach? Any suggestions? 
-- For 
IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Iebcopy rename hlq??

2022-10-20 Thread Bob Bridges
Not sure whether this fits your situation, but a few years ago I identified a 
number of DSs with HLQs pertaining to IDs that no longer existed.  (Really, 
when admins are cleaning up unused IDs, they need to look for the DSs too.)  I 
don't remember exactly, but probably more than 400 and fewer than a thousand.  
I worked out with the sysprog that I would work on them one 1st-char at time 
and send her a list.  She'd look at the list and tell me which ones to keep in 
place.  My next REXX deleted some of them (ISPF libraries for example) and 
rename the rest by adding a HLQ that would let her examine and delete them at 
leisure.  Sure, we know perfectly well that a lot of them will sit out there 
for the next 20 years, but at least they'll all be under her ID.

Searching for these DSs and adding the HLQ isn't a speedy process, but it 
worked.  You shouldn't have any trouble writing such a routine.  But maybe you 
meant you were looking for something prewritten?  I'd have my doubts about 
that; seems to me there'd be too many special requirements at different 
installations.

Oh, and one of the things the REXX had to do during the rename was give my ID 
temporary authority over datasets named A*.**, B*.**, C*.** and so on, one 
letter at a time.  I could do that because I'm a security admin; if you're not, 
you probably need someone else to do that part for you.

---
Bob Bridges, robhbrid...@gmail.com, cell 336 382-7313

/* [Hitler] has grasped the falsity of the hedonistic attitude to life. Nearly 
all western thought since the last war, certainly all ‘progressive’ thought, 
has assumed tacitly that human beings desire nothing beyond ease, security and 
avoidance of pain. In such a view of life there is no room, for instance, for 
patriotism and the military virtuesHitler, because in his own joyless mind 
he feels it with exceptional strength, knows that human beings ~don’t~ want 
only comfort, safety, short working-hours, hygiene, birth-control and, in 
general, common sense; they also, at least intermittently, want struggle and 
self-sacrifice, not to mention drums, flags and loyalty-parades. However they 
may be as economic theories, Fascism and Nazism are psychologically far sounder 
than any hedonistic conception of life.  -George Orwell, reviewing _Mein Kampf_ 
in 1940. */

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
James Cradesh
Sent: Thursday, October 20, 2022 17:51

What’s the solution to copying (actually moving)/ renaming hundreds of sms 
managed datasets?  I’ve looked for rexx execs to do this but I’ve not come 
across anything. I’ve tried dfdss but changing the hlq of sms datasets doesn’t 
seem to work for me since I want to add a hlq not actually rename the hlq  For 
example sys2 to newhlq.sys2. Perhaps a two step approach?  Any suggestions?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: FYI: IBM sales jump shows the mainframe is not dead, with hybrid cloud alive and well | Network World

2022-10-20 Thread Mike Schwab
The big problem with mainframe reporting is the finances compare one
year apart while models come out 2 years apart.  Useful reporting
would be by months since model release.

On Thu, Oct 20, 2022 at 4:25 PM Paul Gilmartin
<042bfe9c879d-dmarc-requ...@listserv.ua.edu> wrote:
>
> On Thu, 20 Oct 2022 20:54:31 +, Bill Johnson wrote:
>
> >That’s not going to sit well with the “mainframe is dying” crowd. It will 
> >still be the best platform in the world long after most of us have retired.
> >
> But the mainframe traditionalists will cringe at the word "cloud".
>
> Note that this thread originated because the OP's environment and a supplier 
> are
> lethargic in adding HTTPS to their tools repertoire, preferring to stay with 
> FTP.
>
> >On Thursday, October 20, 2022, 4:30 PM, Mark Regan  
> >wrote:
> >
> >https://www.networkworld.com/article/3677548/ibm-sales-jump-shows-the-mainframe-is-not-dead-with-hybrid-cloud-alive-and-well.html
>
> --
> gil
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN



-- 
Mike A Schwab, Springfield IL USA
Where do Forest Rangers go to get away from it all?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Iebcopy rename hlq??

2022-10-20 Thread rpinion865
Do you have FDR?

Sent from Proton Mail mobile

 Original Message 
On Oct 20, 2022, 5:51 PM, James Cradesh wrote:

> What’s the solution to copying (actually moving)/ renaming hundreds of sms 
> managed datasets? I’ve looked for rexx execs to do this but I’ve not come 
> across anything. I’ve tried dfdss but changing the hlq of sms datasets 
> doesn’t seem to work for me since I want to add a hlq not actually rename the 
> hlq For example sys2 to newhlq.sys2. Perhaps a two step approach? Any 
> suggestions? 
> -- For 
> IBM-MAIN subscribe / signoff / archive access instructions, send email to 
> lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Iebcopy rename hlq??

2022-10-20 Thread James Cradesh
What’s the solution to copying (actually moving)/ renaming hundreds of sms 
managed datasets?  I’ve looked for rexx execs to do this but I’ve not come 
across anything. I’ve tried dfdss but changing the hlq of sms datasets doesn’t 
seem to work for me since I want to add a hlq not actually rename the hlq  For 
example sys2 to newhlq.sys2. Perhaps a two step approach?  Any suggestions?

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: FYI: IBM sales jump shows the mainframe is not dead, with hybrid cloud alive and well | Network World

2022-10-20 Thread Bill Johnson
I worked on the mainframe “cloud” in the 1980’s. GM consolidated data centers 
in Charlotte. (EDS) Most of the manufacturing facilities were in the Midwest. 
1983. I was part of the first successful migration. Still have the little 
congratulatory marble square with the gold emblem. I don’t cringe about the 
“cloud” now just as I didn’t then. Although, I didn’t think in 1983 they could 
pull it off. Certainly there are differences now, but the basic point was to 
allow processing at a central location from anywhere in the world. 


Sent from Yahoo Mail for iPhone


On Thursday, October 20, 2022, 5:25 PM, Paul Gilmartin 
<042bfe9c879d-dmarc-requ...@listserv.ua.edu> wrote:

On Thu, 20 Oct 2022 20:54:31 +, Bill Johnson wrote:

>That’s not going to sit well with the “mainframe is dying” crowd. It will 
>still be the best platform in the world long after most of us have retired.
> 
But the mainframe traditionalists will cringe at the word "cloud".

Note that this thread originated because the OP's environment and a supplier are
lethargic in adding HTTPS to their tools repertoire, preferring to stay with 
FTP.

>On Thursday, October 20, 2022, 4:30 PM, Mark Regan  
>wrote:
>
>https://www.networkworld.com/article/3677548/ibm-sales-jump-shows-the-mainframe-is-not-dead-with-hybrid-cloud-alive-and-well.html

-- 
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: FYI: IBM sales jump shows the mainframe is not dead, with hybrid cloud alive and well | Network World

2022-10-20 Thread Paul Gilmartin
On Thu, 20 Oct 2022 20:54:31 +, Bill Johnson wrote:

>That’s not going to sit well with the “mainframe is dying” crowd. It will 
>still be the best platform in the world long after most of us have retired.
> 
But the mainframe traditionalists will cringe at the word "cloud".

Note that this thread originated because the OP's environment and a supplier are
lethargic in adding HTTPS to their tools repertoire, preferring to stay with 
FTP.

>On Thursday, October 20, 2022, 4:30 PM, Mark Regan  
>wrote:
>
>https://www.networkworld.com/article/3677548/ibm-sales-jump-shows-the-mainframe-is-not-dead-with-hybrid-cloud-alive-and-well.html

-- 
gil

--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: FYI: IBM sales jump shows the mainframe is not dead, with hybrid cloud alive and well | Network World

2022-10-20 Thread Bill Johnson
That’s not going to sit well with the “mainframe is dying” crowd. It will still 
be the best platform in the world long after most of us have retired.


Sent from Yahoo Mail for iPhone


On Thursday, October 20, 2022, 4:30 PM, Mark Regan  wrote:

https://www.networkworld.com/article/3677548/ibm-sales-jump-shows-the-mainframe-is-not-dead-with-hybrid-cloud-alive-and-well.html

 

​Regards,

Mark Regan, K8MTR General, EN80tg
CTO1 USNR-Retired (1969-1991), 

RUENAAA/CNO WASHINGTON DC//OP-009QCP

Nationwide Insurance, Retired, 1986-2017
z/OS Network Software Consultant (z NetView, z/OS Communications Server)
Contractor, Checks & Balances, Inc.
Email:    marktre...@gmail.com  
LinkedIn:  https://www.linkedin.com/in/mark-t-regan

 

 


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN




--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


FYI: IBM sales jump shows the mainframe is not dead, with hybrid cloud alive and well | Network World

2022-10-20 Thread Mark Regan
https://www.networkworld.com/article/3677548/ibm-sales-jump-shows-the-mainframe-is-not-dead-with-hybrid-cloud-alive-and-well.html

 

​Regards,

Mark Regan, K8MTR General, EN80tg
CTO1 USNR-Retired (1969-1991), 

RUENAAA/CNO WASHINGTON DC//OP-009QCP

Nationwide Insurance, Retired, 1986-2017
z/OS Network Software Consultant (z NetView, z/OS Communications Server)
Contractor, Checks & Balances, Inc.
Email: marktre...@gmail.com  
LinkedIn:  https://www.linkedin.com/in/mark-t-regan

 

 


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: WTO and IEF170I message

2022-10-20 Thread Peter Relson
Scott Ballentine corrected my "expectation".

The default default, in the absence of any routcode, desccode, mcsflag and 
CONSOLxx definition is routcodes 1-16.

Many exits do not run in environments where WTP (routcode 11) would work. Some 
SMF exits, I believe, describe how to issue messages from "within".

It is, simply put, important that you identify where you want your messages to 
go.

Peter Relson
z/OS Core Technology Design


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN


Re: Has anybody tried downloading a new version of tapetools recently using FTPTOOLS or FTPTOOLX job.

2022-10-20 Thread Benik, John E
If anybody has other ideas I would appreciate hearing about them, but I believe 
we are at a point now that we can only download tape tools one way through 
https.

Regards,

John Benik




-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Benik, John E
Sent: Wednesday, October 19, 2022 7:50 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Has anybody tried downloading a new version of tapetools recently 
using FTPTOOLS or FTPTOOLX job.

Thanks all it appears our firewall is preventing us from using the FTP process 
as we get redirected as mentioned below

> It appears the FTP function for downloading a new version of tapetools has 
> been shutdown.
> > > 
> > > public.dhe.ibm.com
> > > EZA1554I Connecting to: public.southdata.ibm.com 170.225.126.18 port: 21.
> > > EZA2590E connect error from initIPv4Connection - EDC8127I Connection 
> > > timed out.


Port 20 and 21 are generally considered unsecure so even ftp.software.ibm.com 
gets redirected.  

So it seems the only way to download Tapetools for us from now on is 
https://public.dhe.ibm.com/storage/tapetool.  






Regards,

John Benik




-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
kekronbekron
Sent: Saturday, October 15, 2022 3:13 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Has anybody tried downloading a new version of tapetools recently 
using FTPTOOLS or FTPTOOLX job.

zOS Client Web Enablement Toolkit, but you'll need to do HTTP requests in PL/1 
or ASM or REXX or COB.

I'd prefer if there was no auto-redirect.
With the amount of love that useful IBM sub-sites get, you can be sure that 
auto-redirect will inevitably lead you to www.ibm.com sometime in the future.


- KB

--- Original Message ---
On Saturday, October 15th, 2022 at 1:20 PM, Paul Gilmartin 
<042bfe9c879d-dmarc-requ...@listserv.ua.edu> wrote:


> On Sat, 15 Oct 2022 05:19:42 +, kekronbekron wrote:
> 
> > Switch to this instead -
> > https://public.dhe.ibm.com/storage/tapetool/
> > 
> > Wherever you see ftp://ftp.software.ibm.com/, it's worth trying 
> > with https://public.dhe.ibm.com/ instead.
> 
> Wouldn't an automatic redirection be useful?
> 
> Except that the obstruction seems to be the client's firewall. Perhaps 
> a proxy at the client end?
> 
> And is there a friendly GUI on z/OS for fetching https resources? Such 
> a thing might likewise be useful for cbttape.org resources also.
> 
> Charlotte for z/OS?
> 
> > > On Friday, October 14, 2022 at 11:34:31 AM CDT, Benik, John E wrote:
> > > 
> > > It appears the FTP function for downloading a new version of tapetools 
> > > has been shutdown.
> > > 
> > > public.dhe.ibm.com
> > > EZA1554I Connecting to: public.southdata.ibm.com 170.225.126.18 port: 21.
> > > EZA2590E connect error from initIPv4Connection - EDC8127I Connection 
> > > timed out.
> 
> 
> --
> gil
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send 
> email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN This e-mail, including 
attachments, may include confidential and/or proprietary information, and may 
be used only by the person or entity to which it is addressed. If the reader of 
this e-mail is not the intended recipient or intended recipient’s authorized 
agent, the reader is hereby notified that any dissemination, distribution or 
copying of this e-mail is prohibited. If you have received this e-mail in 
error, please notify the sender by replying to this message and delete this 
e-mail immediately.


--
For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
lists...@listserv.ua.edu with the message: INFO IBM-MAIN
This e-mail, including attachments, may include confidential and/or
proprietary information, and may be used only by the person or entity
to which it is addressed. If the reader of this e-mail is not the intended
recipient or intended recipient’s authorized agent, the reader is hereby
notified that any dissemination, distribution or copying of this e-mail is
prohibited. If you have received this e-mail in error, please notify the
sender by replying to this message and delete this e-mail immediately.


--
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN