Re: What's the intent of the "LOAD AND ZERO RIGHTMOST BYTE" instruction?

2019-07-25 Thread Phil Smith III
Peter Relson wrote: 

>I don't know the answer, but the usual answer is:

>because either the Java team or the compiler team found something 

>beneficial to having it.

 

Which leads one to wonder.at what point does the C in CISC make this a losing 
proposition? Are we there yet?


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


Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Wendell Lovewell
Lionel, 

Could it be that your PDF reader (or maybe the reader that Chrome wants to use) 
doesn't support PDFx files?  I usually use PDF-XChange, but it doesn't support 
PDFx files so I also got the text when I tried with it.  I installed Adobe 
reader and from File Explorer right-clicked and selected "Opened With", Adobe 
Reader and it worked fine.  

Hth, 

Wendell Lovewell

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


Re: TSO REXX -- find absolute generation # from relative?

2019-07-25 Thread Tom Marchant
On Thu, 25 Jul 2019 14:47:13 -0500, John McKown wrote:

>I just don't see any _simple_ way to do this. I need to convert the
>gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a
>product which creates a number of PDS libraries (not PDSE) which are GDG. I
>want to generate some JCL which is the equivalent of:
>
>//SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)
>
>Which is a JCL error.

I take it since you want (0) that you just want to read the member 
from the latest generation.

How about an IEBCOPY step where you specify GDGBASE(0) on 
INDD (or whatever) and select MEMBER to be unloaded to a 
temporary data set?

-- 
Tom Marchant

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


Re: TSO REXX -- find absolute generation # from relative?

2019-07-25 Thread Paul Gilmartin
On Thu, 25 Jul 2019 14:47:13 -0500, John McKown wrote:

>I just don't see any _simple_ way to do this. I need to convert the
>gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a
>product which creates a number of PDS libraries (not PDSE) which are GDG. I
>want to generate some JCL which is the equivalent of:
>
>//SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)
>
>Which is a JCL error.
> 
What does BPXWDYN( 'ALLOC ...' )
Followed by BPXWDYN( 'INFO ...' )
tell you?

(Beware of ENQ.)

-- gil

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


Re: TSO REXX -- find absolute generation # from relative?

2019-07-25 Thread Steve Beaver
I haven’t used UPDT in years 

Sent from my iPhone

Sorry for the finger checks

On Jul 25, 2019, at 15:34, Sri h Kolusu  wrote:

>> want to generate some JCL which is the equivalent of:
> 
> Try this
> 
> //STEP0100 EXEC PGM=IEBUPDTE,PARM='NEW'
> //SYSPRINT DD SYSOUT=*
> //SYSUT1   DD DUMMY
> //SYSUT2   DD DISP=SHR,DSN=GDGBASE(0)
> //SYSINDD DATA
> ./  ADD NAME=MCKNOWN,LEVEL=00,SOURCE=0,LIST=ALL
> ABC
> DEF
> ./ENDUP
> 
> The outut from this is you will have member named "Mcknown" in your GDGBASE
> (0)
> 
> Thanks,
> Kolusu
> 
> IBM Mainframe Discussion List  wrote on
> 07/25/2019 03:47:13 PM:
> 
>> From: John McKown 
>> To: IBM-MAIN@LISTSERV.UA.EDU
>> Date: 07/25/2019 03:48 PM
>> Subject: [EXTERNAL] TSO REXX -- find absolute generation # from relative?
>> Sent by: IBM Mainframe Discussion List 
>> 
>> I just don't see any _simple_ way to do this. I need to convert the
>> gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a
>> product which creates a number of PDS libraries (not PDSE) which are GDG.
> I
>> want to generate some JCL which is the equivalent of:
>> 
>> //SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)
>> 
>> Which is a JCL error.
>> 
>> --
>> A sine curve goes off to infinity, or at least the end of the blackboard.
>> -- Prof. Steiner
>> 
>> Maranatha! <><
>> John McKown
>> 
>> --
>> 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: TSO REXX -- find absolute generation # from relative?

2019-07-25 Thread Sri h Kolusu
> want to generate some JCL which is the equivalent of:

Try this

//STEP0100 EXEC PGM=IEBUPDTE,PARM='NEW'
//SYSPRINT DD SYSOUT=*
//SYSUT1   DD DUMMY
//SYSUT2   DD DISP=SHR,DSN=GDGBASE(0)
//SYSINDD DATA
./  ADD NAME=MCKNOWN,LEVEL=00,SOURCE=0,LIST=ALL
ABC
DEF
./ENDUP

The outut from this is you will have member named "Mcknown" in your GDGBASE
(0)

Thanks,
Kolusu

IBM Mainframe Discussion List  wrote on
07/25/2019 03:47:13 PM:

> From: John McKown 
> To: IBM-MAIN@LISTSERV.UA.EDU
> Date: 07/25/2019 03:48 PM
> Subject: [EXTERNAL] TSO REXX -- find absolute generation # from relative?
> Sent by: IBM Mainframe Discussion List 
>
> I just don't see any _simple_ way to do this. I need to convert the
> gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a
> product which creates a number of PDS libraries (not PDSE) which are GDG.
I
> want to generate some JCL which is the equivalent of:
>
> //SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)
>
> Which is a JCL error.
>
> --
> A sine curve goes off to infinity, or at least the end of the blackboard.
> -- Prof. Steiner
>
> Maranatha! <><
> John McKown
>
> --
> 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: TSO REXX -- find absolute generation # from relative? [EXTERNAL]

2019-07-25 Thread Horne, Jim - James S
Respectfully, I disagree, especially since you mention REXX.  Using the WORD 
function, parsing is a snap.  If word 1 is NONVSAM, word 3 is the dataset name. 
 I.e.,
If Word(line_read,1) = 'NONVSAM' THEN gdgent = WORD(line_read,3) ;

The last 'gdgent' filled in will be the last GDG.  How does it get simpler?  
It's pretty simple to make that look like your desired function - and without a 
lot of work.

Jim Horne
From: IBM Mainframe Discussion List  On Behalf Of 
John McKown

{sigh} I parsing LISTCAT is a bother. Using IGGCSI00 is not simple, IMO at 
least. I really wish there were a REXX function to do it like:

absolute=RESGDG('basegdg(0)')

where "absolute" would have "basegdg.gv00" in it. So much simpler. Am I am 
a simple person. You really _don't_ want to see the kludge I am cooking up use 
Co:Z and UNIX directories. Which are, for me, a lot easier to use that a 
 PDS.


NOTICE: All information in and attached to the e-mails below may be 
proprietary, confidential, privileged and otherwise protected from improper or 
erroneous disclosure. If you are not the sender's intended recipient, you are 
not authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message. If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message electronic, paper, or otherwise. By transmitting 
documents via this email: Users, Customers, Suppliers and Vendors collectively 
acknowledge and agree the transmittal of information via email is voluntary, is 
offered as a convenience, and is not a secured method of communication; Not to 
transmit any payment information E.G. credit card, debit card, checking 
account, wire transfer information, passwords, or sensitive and personal 
information E.G. Driver's license, DOB, social security, or any other 
information the user wishes to remain confidential; To transmit only 
non-confidential information such as plans, pictures and drawings and to assume 
all risk and liability for and indemnify Lowe's from any claims, losses or 
damages that may arise from the transmittal of documents or including 
non-confidential information in the body of an email transmittal. Thank you.

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


Re: TSO REXX -- find absolute generation # from relative? [EXTERNAL]

2019-07-25 Thread Feller, Paul
John, I would agree using the catalog interface is not fun.  Also I ran a quick 
test and I was wrong about using the (0) as part of the name.  I had to use 
ABC.XYZ.* to get any information back with the test code I had.  The output 
that came back was a list of all the datasets in the GDG base.

Thanks..

Paul Feller
AGT Mainframe Technical Support


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Lizette Koehler
Sent: Thursday, July 25, 2019 3:17 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: TSO REXX -- find absolute generation # from relative? [EXTERNAL]

I have done a LISTC ENT('gdgname') 

Then parsed the output to find the gen0

Take the First entry on the GDG list GDGBASE.Gv00 + GDG limit = close to 
gen0



Lizette


> -Original Message-
> From: IBM Mainframe Discussion List  On 
> Behalf Of John McKown
> Sent: Thursday, July 25, 2019 12:47 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: TSO REXX -- find absolute generation # from relative?
> 
> I just don't see any _simple_ way to do this. I need to convert the
> gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a 
> product which creates a number of PDS libraries (not PDSE) which are 
> GDG. I want to generate some JCL which is the equivalent of:
> 
> //SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)
> 
> Which is a JCL error.
> 
> --
> A sine curve goes off to infinity, or at least the end of the blackboard.
> -- Prof. Steiner
> 
> Maranatha! <><
> John McKown
> 
> --
> 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

--
Please note:  This message originated outside your organization. Please use 
caution when opening links or attachments.

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


Re: TSO REXX -- find absolute generation # from relative? [EXTERNAL]

2019-07-25 Thread Cieri, Anthony

I think there is a REALNAME program on the CBT site (file 929). I have 
not used it , but it might be f some help...

Hth
Tony 
 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of John McKown
Sent: Thursday, July 25, 2019 4:14 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: TSO REXX -- find absolute generation # from relative? [EXTERNAL]

[[ SEI WARNING *** This email was sent from an external source. Do not open 
attachments or click on links from unknown or suspicious senders. *** ]]


{sigh} I parsing LISTCAT is a bother. Using IGGCSI00 is not simple, IMO at
least. I really wish there were a REXX function to do it like:

absolute=RESGDG('basegdg(0)')

where "absolute" would have "basegdg.gv00" in it. So much simpler. Am I
am a simple person. You really _don't_ want to see the kludge I am cooking
up use Co:Z and UNIX directories. Which are, for me, a lot easier to use
that a  PDS.

On Thu, Jul 25, 2019 at 3:09 PM Feller, Paul 
wrote:

> John, could you try to use the catalog interface (IGGCSI00) and do a
> request for the current generation with something like ABC.XYZ(0)?  I
> would think you would then get back the fully qualified name.
>
> Thanks..
>
> Paul Feller
> AGT Mainframe Technical Support
>
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of John McKown
> Sent: Thursday, July 25, 2019 2:47 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: TSO REXX -- find absolute generation # from relative? [EXTERNAL]
>
> I just don't see any _simple_ way to do this. I need to convert the
> gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a
> product which creates a number of PDS libraries (not PDSE) which are GDG. I
> want to generate some JCL which is the equivalent of:
>
> //SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)
>
> Which is a JCL error.
>
> --
> A sine curve goes off to infinity, or at least the end of the blackboard.
> -- Prof. Steiner
>
> Maranatha! <><
> John McKown
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send email
> to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> Please note:  This message originated outside your organization. Please
> use caution when opening links or attachments.
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>


-- 
A sine curve goes off to infinity, or at least the end of the blackboard.
-- Prof. Steiner

Maranatha! <><
John McKown

--
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: TSO REXX -- find absolute generation # from relative?

2019-07-25 Thread Lizette Koehler
I have done a LISTC ENT('gdgname') 

Then parsed the output to find the gen0

Take the First entry on the GDG list GDGBASE.Gv00 + GDG limit = close to 
gen0



Lizette


> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf Of
> John McKown
> Sent: Thursday, July 25, 2019 12:47 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: TSO REXX -- find absolute generation # from relative?
> 
> I just don't see any _simple_ way to do this. I need to convert the
> gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a
> product which creates a number of PDS libraries (not PDSE) which are GDG. I
> want to generate some JCL which is the equivalent of:
> 
> //SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)
> 
> Which is a JCL error.
> 
> --
> A sine curve goes off to infinity, or at least the end of the blackboard.
> -- Prof. Steiner
> 
> Maranatha! <><
> John McKown
> 
> --
> 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: TSO REXX -- find absolute generation # from relative? [EXTERNAL]

2019-07-25 Thread John McKown
{sigh} I parsing LISTCAT is a bother. Using IGGCSI00 is not simple, IMO at
least. I really wish there were a REXX function to do it like:

absolute=RESGDG('basegdg(0)')

where "absolute" would have "basegdg.gv00" in it. So much simpler. Am I
am a simple person. You really _don't_ want to see the kludge I am cooking
up use Co:Z and UNIX directories. Which are, for me, a lot easier to use
that a  PDS.

On Thu, Jul 25, 2019 at 3:09 PM Feller, Paul 
wrote:

> John, could you try to use the catalog interface (IGGCSI00) and do a
> request for the current generation with something like ABC.XYZ(0)?  I
> would think you would then get back the fully qualified name.
>
> Thanks..
>
> Paul Feller
> AGT Mainframe Technical Support
>
>
> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of John McKown
> Sent: Thursday, July 25, 2019 2:47 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: TSO REXX -- find absolute generation # from relative? [EXTERNAL]
>
> I just don't see any _simple_ way to do this. I need to convert the
> gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a
> product which creates a number of PDS libraries (not PDSE) which are GDG. I
> want to generate some JCL which is the equivalent of:
>
> //SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)
>
> Which is a JCL error.
>
> --
> A sine curve goes off to infinity, or at least the end of the blackboard.
> -- Prof. Steiner
>
> Maranatha! <><
> John McKown
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send email
> to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
> --
> Please note:  This message originated outside your organization. Please
> use caution when opening links or attachments.
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>


-- 
A sine curve goes off to infinity, or at least the end of the blackboard.
-- Prof. Steiner

Maranatha! <><
John McKown

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


Re: TSO REXX -- find absolute generation # from relative? [EXTERNAL]

2019-07-25 Thread Feller, Paul
John, could you try to use the catalog interface (IGGCSI00) and do a request 
for the current generation with something like ABC.XYZ(0)?  I would think you 
would then get back the fully qualified name.

Thanks..

Paul Feller
AGT Mainframe Technical Support


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of John McKown
Sent: Thursday, July 25, 2019 2:47 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: TSO REXX -- find absolute generation # from relative? [EXTERNAL]

I just don't see any _simple_ way to do this. I need to convert the
gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a product 
which creates a number of PDS libraries (not PDSE) which are GDG. I want to 
generate some JCL which is the equivalent of:

//SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)

Which is a JCL error.

--
A sine curve goes off to infinity, or at least the end of the blackboard.
-- Prof. Steiner

Maranatha! <><
John McKown

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

--
Please note:  This message originated outside your organization. Please use 
caution when opening links or attachments.

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


Re: [EXTERNAL] TSO REXX -- find absolute generation # from relative?

2019-07-25 Thread Horne, Jim - James S
John,

As long as you want to generate the JCL programmatically, look at using the TSO 
LISTCAT command with the LVL option and processing the output.

Just a thought;
Jim Horne

John McKown wrote:
I just don't see any _simple_ way to do this. I need to convert the
gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a product 
which creates a number of PDS libraries (not PDSE) which are GDG. I want to 
generate some JCL which is the equivalent of:

//SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)

Which is a JCL error.

NOTICE: All information in and attached to the e-mails below may be 
proprietary, confidential, privileged and otherwise protected from improper or 
erroneous disclosure. If you are not the sender's intended recipient, you are 
not authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message. If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message electronic, paper, or otherwise. By transmitting 
documents via this email: Users, Customers, Suppliers and Vendors collectively 
acknowledge and agree the transmittal of information via email is voluntary, is 
offered as a convenience, and is not a secured method of communication; Not to 
transmit any payment information E.G. credit card, debit card, checking 
account, wire transfer information, passwords, or sensitive and personal 
information E.G. Driver's license, DOB, social security, or any other 
information the user wishes to remain confidential; To transmit only 
non-confidential information such as plans, pictures and drawings and to assume 
all risk and liability for and indemnify Lowe's from any claims, losses or 
damages that may arise from the transmittal of documents or including 
non-confidential information in the body of an email transmittal. Thank you.

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


TSO REXX -- find absolute generation # from relative?

2019-07-25 Thread John McKown
I just don't see any _simple_ way to do this. I need to convert the
gdgbase(0) into gdgbase.GVnn absolute. Believe it or not, I have a
product which creates a number of PDS libraries (not PDSE) which are GDG. I
want to generate some JCL which is the equivalent of:

//SYSUT1 DD DISP=SHR,DSN=GDGBASE(0)(MEMBER)

Which is a JCL error.

-- 
A sine curve goes off to infinity, or at least the end of the blackboard.
-- Prof. Steiner

Maranatha! <><
John McKown

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


Re: z/OSMF problem

2019-07-25 Thread Mark Charles
I just set up z/OSMF and remember the answer to this:  MEMLIMIT parameter needs 
to actually work.  This can be controlled by SMFPRMxx and/or SMF exits.  You 
probably won't get any messages from SMF when SMF sets your limit too low, by 
ignoring what is coded on your EXEC statement.

My test system works with SMFPRMxx parameter MEMLIMIT=350M.  My IZUSVR1 Proc 
(from IBM) asks for 4G, but probably doesn't get that...

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


Re: Adding "plain text" files to CMS MACLIB

2019-07-25 Thread Paul Gilmartin
On Thu, 25 Jul 2019 13:20:27 -0400, Thomas David Rivers wrote:
>>
>>>Is there a way to just add a plain text file to a MACLIB?  ...
>>>
>>I  believe if you call it a COPY rather than a MACRO the constraints are
>>relaxed.
>> 
But I suspect you still suffer the inane fixed-80 restriction.  It's been
how many decades since (almost) the last keypunch was scrapped
but its conventions still burden us.

>>Wouldn't an SFS or even BFS directory be friendlier?

-- gil

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


Re: PATH NOT VALIDATED

2019-07-25 Thread Mark Charles
Have you tried Varying on the devices?  Validation may happen at that point?

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


Re: Coupling Facility duplexed

2019-07-25 Thread Jesse 1 Robinson
As far as I know, DB2 was the only CF exploiter that developed and released the 
(enormous) code required for software duplexing. They did this essentially 
because system managed duplexing was delayed by IBM for a long time. System 
managed duplexing requires direct connection between (I)CFs so that structure 
updates can be 'mirrored' without intervention by exploiters. I do not consider 
DB2 (user managed) duplexing to answer affirmatively the question 'are my CFs 
duplexed?' 

Note that there can be multiple ICF LPARs within a single CEC. System managed 
duplexing can be implemented without cabling because connections are virtual. 
You would still see a reference to the 'other CF' in a D CF command. 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Feller, Paul
Sent: Thursday, July 25, 2019 10:22 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: Coupling Facility duplexed [EXTERNAL]

We need to make sure if we are talking hardware duplexing or software 
(application) duplexing.  We let DB2 duplex its group buffer pools.  DB2 
handles/controls keeping the structures in each CF in sync.  In the policy we 
define DUPLEX(ENABLED) for the DB2 group buffer pools.  We do not have any 
hardware connections between our two CFs.  When I display our CFs I see "NO 
REMOTELY CONNECTED COUPLING FACILITY DATA AVAILABLE".  So if we need to take 
down a CF we don't have to move the group buffer pools from one CF to the 
other.  On the flip side because we don't connect the two CFs we do have to 
move some structures that don't support software duplexing from one CF to the 
other CF when we take one of them down.


Thanks..

Paul Feller
AGT Mainframe Technical Support

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Jesse 1 Robinson
Sent: Thursday, July 25, 2019 12:02 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Coupling Facility duplexed [EXTERNAL]

Ah yes. Issue D CF,CFNAME=... You should see something like the following. Note 
the duplexing ICF. This is supported by appropriate definitions in the IODF as 
well as any required cable connections.  

REMOTELY CONNECTED COUPLING FACILITIES 
   CFNAME  COUPLING FACILITY   
   --  
   XYZ0001 003906.IBM.02.4DD8  
   PARTITION: 0D  CPCID: 00
   
   CHPIDS ON XYZ0001 CONNECTED TO REMOTE FACILITY  
   RECEIVER:   CHPIDTYPE   
   E4   ICP
   E5   ICP

   SENDER: CHPIDTYPE   
   E4   ICP
   E5   ICP
  
   XYZ0002 002965.IBM.02.5B48  
   PARTITION: 0D  CPCID: 00
   
   CHPIDS ON XYZ0001 CONNECTED TO REMOTE FACILITY  
   RECEIVER:   CHPIDTYPE   
   F7   CS5   8X-PCIE3 
   FF   CS5   8X-PCIE3 
  
   SENDER: CHPIDTYPE   
   F7   CS5   8X-PCIE3 
   FF   CS5   8X-PCIE3 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Mark Jacobs
Sent: Thursday, July 25, 2019 9:24 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: Coupling Facility duplexed

I believe that there's a hardware requirement too. The two coupling facilities 
need direct connectivity to each other.

Mark Jacobs

Sent from ProtonMail, Swiss-based encrypted email.

GPG Public Key - 

Re: Coupling Facility duplexed [EXTERNAL]

2019-07-25 Thread Feller, Paul
We need to make sure if we are talking hardware duplexing or software 
(application) duplexing.  We let DB2 duplex its group buffer pools.  DB2 
handles/controls keeping the structures in each CF in sync.  In the policy we 
define DUPLEX(ENABLED) for the DB2 group buffer pools.  We do not have any 
hardware connections between our two CFs.  When I display our CFs I see "NO 
REMOTELY CONNECTED COUPLING FACILITY DATA AVAILABLE".  So if we need to take 
down a CF we don't have to move the group buffer pools from one CF to the 
other.  On the flip side because we don't connect the two CFs we do have to 
move some structures that don't support software duplexing from one CF to the 
other CF when we take one of them down.


Thanks..

Paul Feller
AGT Mainframe Technical Support

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Jesse 1 Robinson
Sent: Thursday, July 25, 2019 12:02 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Coupling Facility duplexed [EXTERNAL]

Ah yes. Issue D CF,CFNAME=... You should see something like the following. Note 
the duplexing ICF. This is supported by appropriate definitions in the IODF as 
well as any required cable connections.  

REMOTELY CONNECTED COUPLING FACILITIES 
   CFNAME  COUPLING FACILITY   
   --  
   XYZ0001 003906.IBM.02.4DD8  
   PARTITION: 0D  CPCID: 00
   
   CHPIDS ON XYZ0001 CONNECTED TO REMOTE FACILITY  
   RECEIVER:   CHPIDTYPE   
   E4   ICP
   E5   ICP

   SENDER: CHPIDTYPE   
   E4   ICP
   E5   ICP
  
   XYZ0002 002965.IBM.02.5B48  
   PARTITION: 0D  CPCID: 00
   
   CHPIDS ON XYZ0001 CONNECTED TO REMOTE FACILITY  
   RECEIVER:   CHPIDTYPE   
   F7   CS5   8X-PCIE3 
   FF   CS5   8X-PCIE3 
  
   SENDER: CHPIDTYPE   
   F7   CS5   8X-PCIE3 
   FF   CS5   8X-PCIE3 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Mark Jacobs
Sent: Thursday, July 25, 2019 9:24 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: Coupling Facility duplexed

I believe that there's a hardware requirement too. The two coupling facilities 
need direct connectivity to each other.

Mark Jacobs

Sent from ProtonMail, Swiss-based encrypted email.

GPG Public Key - 
https://urldefense.proofpoint.com/v2/url?u=https-3A__api.protonmail.ch_pks_lookup-3Fop-3Dget-26search-3Dmarkjacobs-40protonmail.com=DwIGaQ=9g4MJkl2VjLjS6R4ei18BA=eUhu3PeeWy6RTndlJVKembFjFsvwCa8eeU_gm45NyOc=M2jHo_lSw2LUhnKppxjWyk3YlP2g38Q9lGSW_i8jb5g=TV9ZLyG8PTvri4T3T8kNeDzhoLKj82DzDs3EuMqTUxg=
 

‐‐‐ Original Message ‐‐‐
On Thursday, July 25, 2019 12:01 PM, Jesse 1 Robinson  
wrote:

> It's been many a year since we moved to duplexing, by which I mean 
> 'system managed duplexing'. Assuming that you are at an appropriate 
> hardware and CF code level, you don't define duplex capability. It's 
> just there. . There is no 'hardware definition' for duplexing.
> Duplexing is defined in the CFRM policy for structures that are to be 
> duplexed. If the active policy specifies duplexing for any structure, 
> then that structure is duplexed to the CF named in the policy. Once 
> enabled in a policy, duplexing can be turned off or on via the OS 
> command SETXCF
>
> So to answer OP's question, How can I tell?, look at the policy 
> definition(s). Also D XCF,STR for any or all structures.
>
> .
> .
> J.O.Skip Robinson
> Southern California Edison Company
> Electric Dragon Team Paddler
> SHARE MVS Program Co-Manager
> 323-715-0595 Mobile
> 626-543-6132 Office ⇐=== NEW
> 

Re: Adding "plain text" files to CMS MACLIB

2019-07-25 Thread Thomas David Rivers

Paul Gilmartin wrote:


On Thu, 25 Jul 2019 11:25:55 -0400, Thomas David Rivers  wrote:
 


Is there a way to just add a plain text file to a MACLIB?  I gather there
has to be some approach that accomplishes this because I have some
maclibs here that have that... but, I'm not sure what the "magic" is.

   


I  believe if you call it a COPY rather than a MACRO the constraints are
relaxed.

Wouldn't an SFS or even BFS directory be friendlier?

-- gil

 


Thanks Gil!

That was "the ticket!"

   - Dave R. -



--
riv...@dignus.comWork: (919) 676-0847
Get your mainframe programming tools at http://www.dignus.com

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


Re: Coupling Facility duplexed

2019-07-25 Thread Jesse 1 Robinson
Ah yes. Issue D CF,CFNAME=... You should see something like the following. Note 
the duplexing ICF. This is supported by appropriate definitions in the IODF as 
well as any required cable connections.  

REMOTELY CONNECTED COUPLING FACILITIES 
   CFNAME  COUPLING FACILITY   
   --  
   XYZ0001 003906.IBM.02.4DD8  
   PARTITION: 0D  CPCID: 00
   
   CHPIDS ON XYZ0001 CONNECTED TO REMOTE FACILITY  
   RECEIVER:   CHPIDTYPE   
   E4   ICP
   E5   ICP
   
   SENDER: CHPIDTYPE   
   E4   ICP
   E5   ICP
   
   XYZ0002 002965.IBM.02.5B48  
   PARTITION: 0D  CPCID: 00
   
   CHPIDS ON XYZ0001 CONNECTED TO REMOTE FACILITY  
   RECEIVER:   CHPIDTYPE   
   F7   CS5   8X-PCIE3 
   FF   CS5   8X-PCIE3 
   
   SENDER: CHPIDTYPE   
   F7   CS5   8X-PCIE3 
   FF   CS5   8X-PCIE3 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Mark Jacobs
Sent: Thursday, July 25, 2019 9:24 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: Coupling Facility duplexed

I believe that there's a hardware requirement too. The two coupling facilities 
need direct connectivity to each other.

Mark Jacobs

Sent from ProtonMail, Swiss-based encrypted email.

GPG Public Key - 
https://api.protonmail.ch/pks/lookup?op=get=markjac...@protonmail.com

‐‐‐ Original Message ‐‐‐
On Thursday, July 25, 2019 12:01 PM, Jesse 1 Robinson  
wrote:

> It's been many a year since we moved to duplexing, by which I mean 
> 'system managed duplexing'. Assuming that you are at an appropriate 
> hardware and CF code level, you don't define duplex capability. It's 
> just there. . There is no 'hardware definition' for duplexing. 
> Duplexing is defined in the CFRM policy for structures that are to be 
> duplexed. If the active policy specifies duplexing for any structure, 
> then that structure is duplexed to the CF named in the policy. Once 
> enabled in a policy, duplexing can be turned off or on via the OS 
> command SETXCF
>
> So to answer OP's question, How can I tell?, look at the policy 
> definition(s). Also D XCF,STR for any or all structures.
>
> .
> .
> J.O.Skip Robinson
> Southern California Edison Company
> Electric Dragon Team Paddler
> SHARE MVS Program Co-Manager
> 323-715-0595 Mobile
> 626-543-6132 Office ⇐=== NEW
> robin...@sce.com
>
> -Original Message-
> From: IBM Mainframe Discussion List IBM-MAIN@LISTSERV.UA.EDU On Behalf 
> Of Carmen Vitullo
> Sent: Thursday, July 25, 2019 5:35 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: (External):Re: Coupling Facility duplexed
>
> Are you talking CF structures ?
> if so D XCF,STR should get you there
> among all the structures you should see something like
>
> DSNDB21_GBP0 06/22/2019 19:55:25 ALLOCATED (NEW) CACHE
> CFNAME: CF01
> DUPLEXING REBUILD
> METHOD: USER-MANAGED
> PHASE: DUPLEX ESTABLISHED
>
> Carmen Vitullo
>
> - Original Message -
>
> From: "Bill Giannelli" billgianne...@gmail.com
>
> To: IBM-MAIN@LISTSERV.UA.EDU
> Sent: Thursday, July 25, 2019 3:51:31 AM
> Subject: Coupling Facility duplexed
>
> How do I determine if our Coupling Facility is duplexed?
> thanks
> Bill
>


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


Re: Linux address space on z/OS 2.4

2019-07-25 Thread John McKown
On Wed, Jul 24, 2019 at 11:21 PM Jake Anderson 
wrote:

> Hi
>
> Just curious about 2.4 ?
>
> Running Linux as an address space in zOS will have an advantage over the
> linux on zVM ?
>
> This is just a question out of curiosity.
>
> Jake
> \


People probably need to understand zCX and Docker. zCX appears to be
documented here:
https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.izso100/izso100_introduction.htm

-- 
A sine curve goes off to infinity, or at least the end of the blackboard.
-- Prof. Steiner

Maranatha! <><
John McKown

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


Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Lionel B Dyck
I'm using Firefox 68.0.1 on Windows 10 if that helps.


Lionel B. Dyck <
Website: http://www.lbdsoftware.com

"Worry more about your character than your reputation.  Character is what you 
are, reputation merely what others think you are." - John Wooden

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Paul Gilmartin
Sent: Thursday, July 25, 2019 11:17 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

On Thu, 25 Jul 2019 11:05:43 -0500, Lionel B Dyck wrote:

>The advantage of the .pdx is that it is a full index of the collection so that 
>doing a search is significantly faster than doing a search of all the pdf's in 
>the folder which requires opening each to search. 
>
>Btw. Using Firefox I was prompted to define a file association, much like with 
>Windows, on how to handle the .pdx and that worked great.  Would be nice if 
>there was a way in Chrome to do that.
> 
Hmmm... for me, on macOS 10.14.5 (18F132) ,Firefox 68.0.1(64-bit), it just 
displays the unrendered text of the pdx; no prompt for association.

-- 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: Coupling Facility duplexed

2019-07-25 Thread Mark Jacobs
I believe that there's a hardware requirement too. The two coupling facilities 
need direct connectivity to each other.

Mark Jacobs

Sent from ProtonMail, Swiss-based encrypted email.

GPG Public Key - 
https://api.protonmail.ch/pks/lookup?op=get=markjac...@protonmail.com

‐‐‐ Original Message ‐‐‐
On Thursday, July 25, 2019 12:01 PM, Jesse 1 Robinson  
wrote:

> It's been many a year since we moved to duplexing, by which I mean 'system 
> managed duplexing'. Assuming that you are at an appropriate hardware and CF 
> code level, you don't define duplex capability. It's just there. . There is 
> no 'hardware definition' for duplexing. Duplexing is defined in the CFRM 
> policy for structures that are to be duplexed. If the active policy specifies 
> duplexing for any structure, then that structure is duplexed to the CF named 
> in the policy. Once enabled in a policy, duplexing can be turned off or on 
> via the OS command SETXCF
>
> So to answer OP's question, How can I tell?, look at the policy 
> definition(s). Also D XCF,STR for any or all structures.
>
> .
> .
> J.O.Skip Robinson
> Southern California Edison Company
> Electric Dragon Team Paddler
> SHARE MVS Program Co-Manager
> 323-715-0595 Mobile
> 626-543-6132 Office ⇐=== NEW
> robin...@sce.com
>
> -Original Message-
> From: IBM Mainframe Discussion List IBM-MAIN@LISTSERV.UA.EDU On Behalf Of 
> Carmen Vitullo
> Sent: Thursday, July 25, 2019 5:35 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: (External):Re: Coupling Facility duplexed
>
> Are you talking CF structures ?
> if so D XCF,STR should get you there
> among all the structures you should see something like
>
> DSNDB21_GBP0 06/22/2019 19:55:25 ALLOCATED (NEW) CACHE
> CFNAME: CF01
> DUPLEXING REBUILD
> METHOD: USER-MANAGED
> PHASE: DUPLEX ESTABLISHED
>
> Carmen Vitullo
>
> - Original Message -
>
> From: "Bill Giannelli" billgianne...@gmail.com
>
> To: IBM-MAIN@LISTSERV.UA.EDU
> Sent: Thursday, July 25, 2019 3:51:31 AM
> Subject: Coupling Facility duplexed
>
> How do I determine if our Coupling Facility is duplexed?
> thanks
> Bill
>
> 
>
> 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: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Paul Gilmartin
On Thu, 25 Jul 2019 11:05:43 -0500, Lionel B Dyck wrote:

>The advantage of the .pdx is that it is a full index of the collection so that 
>doing a search is significantly faster than doing a search of all the pdf's in 
>the folder which requires opening each to search. 
>
>Btw. Using Firefox I was prompted to define a file association, much like with 
>Windows, on how to handle the .pdx and that worked great.  Would be nice if 
>there was a way in Chrome to do that.
> 
Hmmm... for me, on macOS 10.14.5 (18F132) ,Firefox 68.0.1(64-bit), it just 
displays the
unrendered text of the pdx; no prompt for association.

-- gil

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


Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Lionel B Dyck
The advantage of the .pdx is that it is a full index of the collection so that 
doing a search is significantly faster than doing a search of all the pdf's in 
the folder which requires opening each to search. 

Btw. Using Firefox I was prompted to define a file association, much like with 
Windows, on how to handle the .pdx and that worked great.  Would be nice if 
there was a way in Chrome to do that.


Lionel B. Dyck <
Website: http://www.lbdsoftware.com

"Worry more about your character than your reputation.  Character is what you 
are, reputation merely what others think you are." - John Wooden

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Paul Gilmartin
Sent: Thursday, July 25, 2019 10:53 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

On Thu, 25 Jul 2019 10:06:00 -0400, Steve Smith wrote:

>Keep in mind there are two versions of the entire collection: One is 
>indexed by Adobe with a .pdx; the other has an index.html file.  As 
>best as I can tell, that's the only difference, and if it were up to 
>me, I think I'd just combine the two.  However, the .pdx does seem to 
>add a couple hundred pounds to the file.
> 
I extracted the .zip and it appears to contain both:
641 $ ls -al */*.html */*.pdx
-rw-r--r--@ 1 paulgilm  staff   954126 Jul 23 07:48 
zosv2r4pdfkit-Jul-19/1._Open_Me_First_zOS_V2R4_Adobe_Indexed_Collection.html
-rw-r--r--@ 1 paulgilm  staff  1741409 Jul 22 17:38 zosv2r4pdfkit-Jul-19/Export 
zOS V2.2 to V2.4 Upgrade Workflow.html -rw-r--r--@ 1 paulgilm  staff  1244609 
Jul 22 17:38 zosv2r4pdfkit-Jul-19/Export zOS V2.3 to V2.4 Upgrade Workflow.html
-rw-r--r--@ 1 paulgilm  staff  557 Jul 23 07:42 
zosv2r4pdfkit-Jul-19/zOS_V2R4_Adobe_PDF_Collection_Index.pdx
642 $ 

-- 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: Adding "plain text" files to CMS MACLIB

2019-07-25 Thread Paul Gilmartin
On Thu, 25 Jul 2019 11:25:55 -0400, Thomas David Rivers  wrote:
>
> The CMS MACLIB GEN/ADD command seems to require that the file
> being added to the maclib be an ASM macro (and have the proper MACRO
> statements in it.)
>
> Is there a way to just add a plain text file to a MACLIB?  I gather there
> has to be some approach that accomplishes this because I have some
> maclibs here that have that... but, I'm not sure what the "magic" is.
> 
I  believe if you call it a COPY rather than a MACRO the constraints are
relaxed.

Wouldn't an SFS or even BFS directory be friendlier?

-- gil

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


Re: Coupling Facility duplexed

2019-07-25 Thread Jesse 1 Robinson
It's been many a year since we moved to duplexing, by which I mean 'system 
managed duplexing'. Assuming that you are at an appropriate hardware and CF 
code level, you don't define duplex capability. It's just there. . There is no 
'hardware definition' for duplexing. Duplexing is defined in the CFRM policy 
for structures that are to be duplexed. If the active policy specifies 
duplexing for any structure, then that structure is duplexed to the CF named in 
the policy. Once enabled in a policy, duplexing can be turned off or on via the 
OS command SETXCF 

So to answer OP's question, How can I tell?, look at the policy definition(s). 
Also D XCF,STR for any or all structures. 

.
.
J.O.Skip Robinson
Southern California Edison Company
Electric Dragon Team Paddler 
SHARE MVS Program Co-Manager
323-715-0595 Mobile
626-543-6132 Office ⇐=== NEW
robin...@sce.com

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Carmen Vitullo
Sent: Thursday, July 25, 2019 5:35 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: (External):Re: Coupling Facility duplexed

Are you talking CF structures ? 
if so D XCF,STR should get you there 
among all the structures you should see something like 



DSNDB21_GBP0 06/22/2019 19:55:25 ALLOCATED (NEW) CACHE 
CFNAME: CF01 
DUPLEXING REBUILD 
METHOD: USER-MANAGED 
PHASE: DUPLEX ESTABLISHED 

Carmen Vitullo 

- Original Message -

From: "Bill Giannelli"  
To: IBM-MAIN@LISTSERV.UA.EDU 
Sent: Thursday, July 25, 2019 3:51:31 AM 
Subject: Coupling Facility duplexed 

How do I determine if our Coupling Facility is duplexed? 
thanks 
Bill 

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


Re: Linux address space on z/OS 2.4

2019-07-25 Thread Paul Gilmartin
On Thu, 25 Jul 2019 08:16:39 +, Martin Packer wrote:
>
>Three I can think of straightway:
>
>1) No Linux sysproging
>
I'd expect, rather, the Linux sysproging to be similar, but
no VM sysproging.
>2) WLM workload management

>3) Proximity to the data
>
Classic data sets, or zFS, or DB2, or other (specify).  And there remains
the EBCDIC nightmare.

Security/integrity concerns.  Will users be able to log on to Linux
with RACF credentials and access all their z/OS resources?  Classic
PDS serialization is cast in stone; NFS obeys ISPF's ENQ rules.

>I think it’s going to be VERY interesting ts see what architectures and
>operational regimes people come up with.


>> On  5 Jul 2019, at 11:22, Jake Anderson wrote:
>>
>> Just curious about 2.4 ?
>>
>> Running Linux as an address space in zOS will have an advantage over the
>> linux on zVM ?

-- gil

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


Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Paul Gilmartin
On Thu, 25 Jul 2019 10:06:00 -0400, Steve Smith wrote:

>Keep in mind there are two versions of the entire collection: One is
>indexed by Adobe with a .pdx; the other has an index.html file.  As best as
>I can tell, that's the only difference, and if it were up to me, I think
>I'd just combine the two.  However, the .pdx does seem to add a couple
>hundred pounds to the file.
> 
I extracted the .zip and it appears to contain both:
641 $ ls -al */*.html */*.pdx
-rw-r--r--@ 1 paulgilm  staff   954126 Jul 23 07:48 
zosv2r4pdfkit-Jul-19/1._Open_Me_First_zOS_V2R4_Adobe_Indexed_Collection.html
-rw-r--r--@ 1 paulgilm  staff  1741409 Jul 22 17:38 zosv2r4pdfkit-Jul-19/Export 
zOS V2.2 to V2.4 Upgrade Workflow.html
-rw-r--r--@ 1 paulgilm  staff  1244609 Jul 22 17:38 zosv2r4pdfkit-Jul-19/Export 
zOS V2.3 to V2.4 Upgrade Workflow.html
-rw-r--r--@ 1 paulgilm  staff  557 Jul 23 07:42 
zosv2r4pdfkit-Jul-19/zOS_V2R4_Adobe_PDF_Collection_Index.pdx
642 $ 

-- gil

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


Re: IBM SFG - Your Opinion

2019-07-25 Thread Sasso, Len
I just checked, we are now at Version 5.2.

Thank You!
Len Sasso
Systems Administrator
General Dynamics Information Technology
327 Columbia TPKE
Rensselaer, NY 12144
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com



-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Steve Beaver
Sent: Thursday, July 25, 2019 11:28 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: IBM SFG - Your Opinion

Len you will need to move to CD 5.2

Sent from my iPhone

Sorry for the finger checks

> On Jul 25, 2019, at 08:50, Sasso, Len  wrote:
> 
> Has anyone had training for the IBM SFG Product?
> 
> If so, could you please provide the name of the 3rd Party Vendor who provided 
> the training?
> 
> How would you rate the training?
> 
> 
> Thank You!
> Len Sasso
> Systems Administrator
> General Dynamics Information Technology
> 327 Columbia TPKE
> Rensselaer, NY 12144
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL: www.gdit.com
> 
> 
> -Original Message-
> From: Jackson, Rob 
> Sent: Thursday, March 14, 2019 3:39 PM
> To: Sasso, Len 
> Subject: RE: IBM SFG - Your Opinion
> 
> Good luck, Len!  If you ever need a shoulder to cry on . . . .  :)
> 
> First Tennessee Bank
> Mainframe Technical Support
> 1638 Robert C Jackson Dr
> Maryville, TN 37801
> O:  865-977-5343
> C:  334-201-8516
> 
> 
> -Original Message-
> From: IBM Mainframe Discussion List  On 
> Behalf Of Sasso, Len
> Sent: Thursday, March 14, 2019 3:32 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: IBM SFG - Your Opinion
> Importance: High
> 
> [External Email]
> 
> We will be doing SFTP.  IBM is installing and we will be working with them to 
> implement. We just got Connect:Direct about 1.5 years ago. We are getting 
> SFG/SI, SSP, SEAS and CC.  Yes, there sure are "a lot of pieces."
> 
> Thank You!
> 
> Len Sasso
> System Administrator
> General Dynamics Information Technology
> 327 Columbia TPKE
> Rensselaer, NY 12144
> 
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL: www.gdit.com
> 
> 
> 
> 
> -Original Message-
> From: IBM Mainframe Discussion List  On 
> Behalf Of Jackson, Rob
> Sent: Thursday, March 14, 2019 3:26 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: IBM SFG - Your Opinion
> 
> It's extremely powerful but oh so onerous to install, maintain, and 
> administer.  They will push implementation services, and you will wish you'd 
> bought them before it's over if you go it on your own.
> 
> What are you planning on doing with it?  If it is just MFT, I would highly 
> recommend taking a good hard look at MOVEit first (unless you have a bunch of 
> Connect:Direct you have to deal with, since SI/SFG does come with CDSA; you 
> may end up not having much choice).
> 
> Keep in mind too that you won't need only SFG/SI.  You will need SSP and SEAS 
> (if you want to do SFTP; that's another joy) as well.  And you probably will 
> want CC.  There are other pieces that have to be installed and configured on 
> separate servers (SSPcm and Perimeter Server), but they are part of SSP.  In 
> short, there are a lot of pieces.
> 
> One more thing, IBM just recently outsourced support and development (I 
> think) of the suite to Syncsort, if that sways you either way.
> 
> First Tennessee Bank
> Mainframe Technical Support
> 
> [External Email]
> 
> I welcome your comments, suggestions, etc. about the IBM SFG Product.
> FIRST TENNESSEE
> 
> Confidentiality notice:
> This e-mail message, including any attachments, may contain legally 
> privileged and/or confidential information. If you are not the intended 
> recipient(s), or the employee or agent responsible for delivery of this 
> message to the intended recipient(s), you are hereby notified that any 
> dissemination, distribution, or copying of this e-mail message is strictly 
> prohibited. If you have received this message in error, please immediately 
> notify the sender and delete this e-mail message from your computer.
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send 
> email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> 
> This electronic message transmission contains information from CSRA that may 
> be attorney-client privileged, proprietary or confidential. The information 
> in this message is intended only for use by the individual(s) to whom it is 
> addressed. If you believe you have received this message in error, please 
> contact me immediately and be aware that any use, disclosure, copying or 
> distribution of the contents of this message is strictly prohibited. NOTE: 
> Regardless of content, this email shall not operate to bind CSRA to any order 
> or other contract unless pursuant to explicit written agreement or government 
> initiative expressly permitting the use of email for such purpose.
> 

Re: IBM SFG - Your Opinion

2019-07-25 Thread Steve Beaver
Len you will need to move to CD 5.2

Sent from my iPhone

Sorry for the finger checks

> On Jul 25, 2019, at 08:50, Sasso, Len  wrote:
> 
> Has anyone had training for the IBM SFG Product?
> 
> If so, could you please provide the name of the 3rd Party Vendor who provided 
> the training?
> 
> How would you rate the training?
> 
> 
> Thank You!
> Len Sasso
> Systems Administrator
> General Dynamics Information Technology
> 327 Columbia TPKE
> Rensselaer, NY 12144
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL: www.gdit.com
> 
> 
> -Original Message-
> From: Jackson, Rob 
> Sent: Thursday, March 14, 2019 3:39 PM
> To: Sasso, Len 
> Subject: RE: IBM SFG - Your Opinion
> 
> Good luck, Len!  If you ever need a shoulder to cry on . . . .  :)
> 
> First Tennessee Bank
> Mainframe Technical Support
> 1638 Robert C Jackson Dr
> Maryville, TN 37801
> O:  865-977-5343
> C:  334-201-8516
> 
> 
> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf Of 
> Sasso, Len
> Sent: Thursday, March 14, 2019 3:32 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: IBM SFG - Your Opinion
> Importance: High
> 
> [External Email]
> 
> We will be doing SFTP.  IBM is installing and we will be working with them to 
> implement. We just got Connect:Direct about 1.5 years ago. We are getting 
> SFG/SI, SSP, SEAS and CC.  Yes, there sure are "a lot of pieces."
> 
> Thank You!
> 
> Len Sasso
> System Administrator
> General Dynamics Information Technology
> 327 Columbia TPKE
> Rensselaer, NY 12144
> 
> Phone: (518) 257-4209
> Cell: (518) 894-0879
> Fax: (518) 257-4300
> len.sa...@gdit.com
> URL: www.gdit.com
> 
> 
> 
> 
> -Original Message-
> From: IBM Mainframe Discussion List  On Behalf Of 
> Jackson, Rob
> Sent: Thursday, March 14, 2019 3:26 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: IBM SFG - Your Opinion
> 
> It's extremely powerful but oh so onerous to install, maintain, and 
> administer.  They will push implementation services, and you will wish you'd 
> bought them before it's over if you go it on your own.
> 
> What are you planning on doing with it?  If it is just MFT, I would highly 
> recommend taking a good hard look at MOVEit first (unless you have a bunch of 
> Connect:Direct you have to deal with, since SI/SFG does come with CDSA; you 
> may end up not having much choice).
> 
> Keep in mind too that you won't need only SFG/SI.  You will need SSP and SEAS 
> (if you want to do SFTP; that's another joy) as well.  And you probably will 
> want CC.  There are other pieces that have to be installed and configured on 
> separate servers (SSPcm and Perimeter Server), but they are part of SSP.  In 
> short, there are a lot of pieces.
> 
> One more thing, IBM just recently outsourced support and development (I 
> think) of the suite to Syncsort, if that sways you either way.
> 
> First Tennessee Bank
> Mainframe Technical Support
> 
> [External Email]
> 
> I welcome your comments, suggestions, etc. about the IBM SFG Product.
> FIRST TENNESSEE
> 
> Confidentiality notice:
> This e-mail message, including any attachments, may contain legally 
> privileged and/or confidential information. If you are not the intended 
> recipient(s), or the employee or agent responsible for delivery of this 
> message to the intended recipient(s), you are hereby notified that any 
> dissemination, distribution, or copying of this e-mail message is strictly 
> prohibited. If you have received this message in error, please immediately 
> notify the sender and delete this e-mail message from your computer.
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
> lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> 
> This electronic message transmission contains information from CSRA that may 
> be attorney-client privileged, proprietary or confidential. The information 
> in this message is intended only for use by the individual(s) to whom it is 
> addressed. If you believe you have received this message in error, please 
> contact me immediately and be aware that any use, disclosure, copying or 
> distribution of the contents of this message is strictly prohibited. NOTE: 
> Regardless of content, this email shall not operate to bind CSRA to any order 
> or other contract unless pursuant to explicit written agreement or government 
> initiative expressly permitting the use of email for such purpose.
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions, send email to 
> lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> 
> This electronic message transmission contains information from GDIT that may 
> be attorney-client privileged, proprietary or confidential. The information 
> in this message is intended only for use by the individual(s) to whom it is 
> 

Adding "plain text" files to CMS MACLIB

2019-07-25 Thread Thomas David Rivers

So...

The CMS MACLIB GEN/ADD command seems to require that the file
being added to the maclib be an ASM macro (and have the proper MACRO
statements in it.)

Is there a way to just add a plain text file to a MACLIB?  I gather there
has to be some approach that accomplishes this because I have some
maclibs here that have that... but, I'm not sure what the "magic" is.

Anyone recall how to do that?

   - Thanks! -
   - Dave Rivers -

--
riv...@dignus.comWork: (919) 676-0847
Get your mainframe programming tools at http://www.dignus.com

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


Re: getting a list of FMIDS and the product description

2019-07-25 Thread Jerry Callen
(A day late and a dollar short...)

My nifty little USS SMP query tool can get you the necessary bits of 
information from the CSI, 
but there is Some Assembly Required to pull it together into a nice report 
(which I will not do  
here, but if I had to, would use some combination of sed and awk). 

That tool is here:  https://github.com/zorts/smpapi

Here are the queries and their output (on my system).

-- Jerry

smp -z global -e product -s prodid,vrm,description

PRODUCT|GLOBAL||DESCRIPTION|z/OS
PRODUCT|GLOBAL||PRODID|5650-ZOS
PRODUCT|GLOBAL||VRM|02.03.00
PRODUCT|GLOBAL||DESCRIPTION|IBM z/OS Connect Enterprise Edition V3
PRODUCT|GLOBAL||PRODID|5655-CE3
PRODUCT|GLOBAL||VRM|03.00.00
PRODUCT|GLOBAL||DESCRIPTION|IBM 64-bit SDK for z/OS, Java 2 Technology Edition, 
V8
PRODUCT|GLOBAL||PRODID|5655-DGH
PRODUCT|GLOBAL||VRM|08.00.00
PRODUCT|GLOBAL||DESCRIPTION|VISUAL AGE FOR JAVA
PRODUCT|GLOBAL||PRODID|5655-JAV
PRODUCT|GLOBAL||VRM|02.00.00
PRODUCT|GLOBAL||DESCRIPTION|Print Services Facility for z/OS
PRODUCT|GLOBAL||PRODID|5655-M32
PRODUCT|GLOBAL||VRM|04.05.00
PRODUCT|GLOBAL||DESCRIPTION|IBM Encryption Facility for z/OS
PRODUCT|GLOBAL||PRODID|5655-P97
PRODUCT|GLOBAL||VRM|01.02.00
PRODUCT|GLOBAL||DESCRIPTION|IBM Fault Analyzer for z/OS V14
PRODUCT|GLOBAL||PRODID|5655-Q41
PRODUCT|GLOBAL||VRM|14.01.00
PRODUCT|GLOBAL||DESCRIPTION|IBM File Manager for z/OS V14
PRODUCT|GLOBAL||PRODID|5655-Q42
PRODUCT|GLOBAL||VRM|14.01.00
PRODUCT|GLOBAL||DESCRIPTION|IBM Developer for z Debug Edition V14
PRODUCT|GLOBAL||PRODID|5655-Q50
PRODUCT|GLOBAL||VRM|14.01.00
PRODUCT|GLOBAL||DESCRIPTION|DITTO/ESA FOR MVS
PRODUCT|GLOBAL||PRODID|5655-103
PRODUCT|GLOBAL||VRM|01.03.00
PRODUCT|GLOBAL||DESCRIPTION|GDDM IVU
PRODUCT|GLOBAL||PRODID|5668-723
PRODUCT|GLOBAL||VRM|01.01.03
PRODUCT|GLOBAL||DESCRIPTION|GDDM IMD
PRODUCT|GLOBAL||PRODID|5668-801
PRODUCT|GLOBAL||VRM|02.01.03
PRODUCT|GLOBAL||DESCRIPTION|TELEPROCESSING NETWORK SIMULATOR
PRODUCT|GLOBAL||PRODID|5688-121
PRODUCT|GLOBAL||VRM|03.05.00
PRODUCT|GLOBAL||DESCRIPTION|C/370 LIBRARY
PRODUCT|GLOBAL||PRODID|5688-188
PRODUCT|GLOBAL||VRM|02.02.00
PRODUCT|GLOBAL||DESCRIPTION|IBM PAGE PRINTER FORMATTING AID/370
PRODUCT|GLOBAL||PRODID|5688-190
PRODUCT|GLOBAL||VRM|01.01.00
PRODUCT|GLOBAL||DESCRIPTION|OVERLAY GENERATION LANGUAGE/370
PRODUCT|GLOBAL||PRODID|5688-191
PRODUCT|GLOBAL||VRM|01.01.00
PRODUCT|GLOBAL||DESCRIPTION|IBM Compiler for REXX/370
PRODUCT|GLOBAL||PRODID|5695-013
PRODUCT|GLOBAL||VRM|01.04.00
PRODUCT|GLOBAL||DESCRIPTION|IBM Library for REXX/370
PRODUCT|GLOBAL||PRODID|5695-014
PRODUCT|GLOBAL||VRM|01.04.00
PRODUCT|GLOBAL||DESCRIPTION|IBM High Level Assembler for MVS & VM & VSE
PRODUCT|GLOBAL||PRODID|5696-234
PRODUCT|GLOBAL||VRM|01.06.00
PRODUCT|GLOBAL||DESCRIPTION|Content Manager OnDemand Premium Feature Pack for 
z/OS
PRODUCT|GLOBAL||PRODID|5697-CM1
PRODUCT|GLOBAL||VRM|10.01.00

smp -z global -e feature -s product,fmid

FEATURE|GLOBAL|DZOBB230|FMID|HCM1G10
FEATURE|GLOBAL|DZOBB230|FMID|HGD3201
FEATURE|GLOBAL|DZOBB230|FMID|HJS77B0
FEATURE|GLOBAL|DZOBB230|FMID|HLB77B0
FEATURE|GLOBAL|DZOBB230|FMID|HMOS705
FEATURE|GLOBAL|DZOBB230|FMID|HNET7B0
FEATURE|GLOBAL|DZOBB230|FMID|HOPI7B0
FEATURE|GLOBAL|DZOBB230|FMID|HQX77B0
FEATURE|GLOBAL|DZOBB230|FMID|HRF77B0
FEATURE|GLOBAL|DZOBB230|FMID|HRM77B0
FEATURE|GLOBAL|DZOBB230|FMID|HSM1N00
FEATURE|GLOBAL|DZOBB230|FMID|H24P111
FEATURE|GLOBAL|DZOBB230|FMID|JBD6201
FEATURE|GLOBAL|DZOBB230|FMID|JBD6202
FEATURE|GLOBAL|DZOBB230|FMID|JMQ416A
FEATURE|GLOBAL|DZOBB230|PRODUCT|5650-ZOS,02.03.00
FEATURE|GLOBAL|ICLIB220|FMID|HCLB201
FEATURE|GLOBAL|ICLIB220|FMID|HDL1202
FEATURE|GLOBAL|ICLIB220|FMID|JCLB203
FEATURE|GLOBAL|ICLIB220|FMID|JCLB204
FEATURE|GLOBAL|ICLIB220|FMID|JDL1212
FEATURE|GLOBAL|ICLIB220|FMID|JDL1214
FEATURE|GLOBAL|ICLIB220|PRODUCT|5688-188,02.02.00
FEATURE|GLOBAL|IDBTBE1A|FMID|HADRE10
FEATURE|GLOBAL|IDBTBE1A|FMID|HVWR180
FEATURE|GLOBAL|IDBTBE1A|FMID|H09F210
FEATURE|GLOBAL|IDBTBE1A|PRODUCT|5655-Q50,14.01.00
FEATURE|GLOBAL|IDITE130|FMID|H0GB310
FEATURE|GLOBAL|IDITE130|PRODUCT|5655-103,01.03.00
FEATURE|GLOBAL|IEFAD120|FMID|HCF773D
FEATURE|GLOBAL|IEFAD120|PRODUCT|5655-P97,01.02.00
FEATURE|GLOBAL|IEFAS120|FMID|HCF7740
FEATURE|GLOBAL|IEFAS120|PRODUCT|5655-P97,01.02.00
FEATURE|GLOBAL|IEHDAA10|FMID|HQN4450
FEATURE|GLOBAL|IEHDAA10|PRODUCT|5697-CM1,10.01.00
FEATURE|GLOBAL|IFANBE10|FMID|HADQE10
FEATURE|GLOBAL|IFANBE10|FMID|HVWR180
FEATURE|GLOBAL|IFANBE10|PRODUCT|5655-Q41,14.01.00
FEATURE|GLOBAL|IGDMD213|FMID|HGD3202
FEATURE|GLOBAL|IGDMD213|PRODUCT|5668-801,02.01.03
FEATURE|GLOBAL|IGDVE113|FMID|HGD3204
FEATURE|GLOBAL|IGDVE113|PRODUCT|5668-723,01.01.03
FEATURE|GLOBAL|IHLAS160|FMID|HMQ4160
FEATURE|GLOBAL|IHLAS160|PRODUCT|5696-234,01.06.00
FEATURE|GLOBAL|IHLAT160|FMID|JMQ416A
FEATURE|GLOBAL|IHLAT160|PRODUCT|5696-234,01.06.00
FEATURE|GLOBAL|IISZB800|FMID|HJVB800
FEATURE|GLOBAL|IISZB800|PRODUCT|5655-DGH,08.00.00
FEATURE|GLOBAL|IIZEB300|FMID|HZC3000
FEATURE|GLOBAL|IIZEB300|FMID|JZC3002
FEATURE|GLOBAL|IIZEB300|PRODUCT|5655-CE3,03.00.00
FEATURE|GLOBAL|IOGLE110|FMID|HVRL100

Re: Shopz product orders will NOT be available between August 16, 2019 and August 22, 2019 inclusively

2019-07-25 Thread Bill Johnson
Kurt to the rescue!


Sent from Yahoo Mail for iPhone


On Thursday, July 25, 2019, 8:50 AM, Kurt Quackenbush  wrote:

On 7/24/2019 3:55 PM, Tony Harminc wrote:
> Really...? That sounds very convenient - certainly for those of us using
> zPDTs. But in the "Preparaing to use Internet service retrieval" chapter in
> the book you mention below, the first item in "How to obtain a user
> certificate" is "If you are not yet a ShopzSeries user, register to become
> one".
> 
> Can you tell me exactly how to get a published PTF via SMP/E without having
> Shopz?

Obtaining the user certificate from Shopz is a one time event... well, 
once a year.  Once you have a certificate, you don't need to interact 
with Shopz again to order and download PTFs using SMP/E.

Kurt Quackenbush -- IBM, SMP/E Development
Chuck Norris never uses CHECK when he applies PTFs.

--
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: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Lionel B Dyck
Correct - it will open the html file with no problem - but that isn't the 
searchable index which does open in Edge.


Lionel B. Dyck <
Website: http://www.lbdsoftware.com

"Worry more about your character than your reputation.  Character is what you 
are, reputation merely what others think you are." - John Wooden

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of Jim 
Brooks
Sent: Thursday, July 25, 2019 8:54 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

Open the Chrome index in your  z/OS 2.4 folder.
Chrome will not find the file.
Change the current URL in Chrome to point to your z/Os 2.4 folder on your hard 
drive.
It will open the Index.html  in your chrome browser.
Works for me.

.
Regards,
Jim



Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Jul 24, 2019 at 2:13 PM Susan Shumway  wrote:

> Thanks for the notice about this weird behavior, Lionel. I'll alert 
> the Collection builder and see if he has any ideas.
>
> -Sue Shumway
>
>
> On 7/24/2019 11:47 AM, Lionel B Dyck wrote:
> > Thanks - did that - but since they claim they get so many issues 
> > that
> one should not expect a response.  Thus posting here to see if anyone 
> has any solution.
> >
> >
> > Lionel B. Dyck <
> > Website: http://www.lbdsoftware.com
> >
> > "Worry more about your character than your reputation.  Character is
> what you are, reputation merely what others think you are." - John 
> Wooden
> >
> > -Original Message-
> > From: IBM Mainframe Discussion List  On
> Behalf Of Mike Schwab
> > Sent: Wednesday, July 24, 2019 10:45 AM
> > To: IBM-MAIN@LISTSERV.UA.EDU
> > Subject: Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???
> >
> >
> https://support.google.com/chrome/answer/95315?co=GENIE.Platform%3DDes
> ktop=en
> >
> > On Wed, Jul 24, 2019 at 2:32 PM Lionel B Dyck  wrote:
> >>
> >> Works fine in IE and in Edge - just Chrome.
> >>
> >> Already have the file association in Windows set.
> >>
> >>
> >> Lionel B. Dyck <
> >> Website: http://www.lbdsoftware.com
> >>
> >> "Worry more about your character than your reputation.  Character 
> >> is what you are, reputation merely what others think you are." - 
> >> John Wooden
> >>
> >> -Original Message-
> >> From: IBM Mainframe Discussion List  On 
> >> Behalf Of Allan Staller
> >> Sent: Wednesday, July 24, 2019 9:26 AM
> >> To: IBM-MAIN@LISTSERV.UA.EDU
> >> Subject: Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???
> >>
> >> Windows File Associations?
> >>
> >> Try w/IE or other to see if it is unique to Chrome
> >>
> >> -Original Message-
> >> From: IBM Mainframe Discussion List  On 
> >> Behalf Of Lionel B Dyck
> >> Sent: Wednesday, July 24, 2019 9:24 AM
> >> To: IBM-MAIN@LISTSERV.UA.EDU
> >> Subject: Using Google Chrome to open IBM z/OS 2.4 Library Index ???
> >>
> >> When using Google Chrome with a bookmark to the .pdx for the z/OS 
> >> library, the pdx opens as a text file.
> >>
> >>
> >>
> >> It opens in Adobe Reader just fine using Edge when bookmarked.
> >>
> >>
> >>
> >> Any suggestions on how to 'fix' Chrome?
> >>
> >>
> >>
> >> tia
> >>
> >>
> >>
> >>
> >>
> >> Lionel B. Dyck <
> >> Website:
> >>  >> lbdsof
> >> tware.com%2Fdata=02%7C01%7Callan.staller%40HCL.COM%7C74e712140
> >> 585
> >> 48c3de
> >> d208d71042aeea%7C189de737c93a4f5a8b686f4ca9941912%7C0%7C0%7C6369957
> >> 509
> >> 284020
> >> 19sdata=BVlDjxxqK3ix%2BQyYhZV3wMZUdTfx%2BL78sGU6xQy1Oak%3D
> >> ;re
> >> served
> >> =0>
> >> https://apc01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fww
> >> w.l
> >> bdsoft
> >> ware.comdata=02%7C01%7Callan.staller%40HCL.COM%7C74e7121405854
> >> 8c3
> >> ded208
> >> d71042aeea%7C189de737c93a4f5a8b686f4ca9941912%7C0%7C0%7C63699575092
> >> 840
> >> 2019
> >> mp;sdata=B3fiylG4AL9Kv4fvCvjcQflnKlHcoNPs2yGW%2FL6DuZU%3Dreser
> >> ved
> >> =0
> >>
> >> "Worry more about your character than your reputation.  Character 
> >> is what you are, reputation merely what others think you are." - 
> >> John Wooden
> >>
> >>
> >>
> >>
> >> ---
> >> --- For IBM-MAIN subscribe / signoff / archive access instructions, 
> >> send email to lists...@listserv.ua.edu with the message: INFO 
> >> IBM-MAIN
> >> ::DISCLAIMER::
> >> ---
> >> ---
> >> --
> >> ---
> >> ---
> >> --
> >> ---
> >> ---
> >> --
> >> --
> >> The contents of this e-mail and 

Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Lionel B Dyck
The pdx is a true index to the collection whereas the index.html is really a 
list of pubs.

Lionel B. Dyck <
Website: http://www.lbdsoftware.com

"Worry more about your character than your reputation.  Character is what you 
are, reputation merely what others think you are." - John Wooden

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Steve Smith
Sent: Thursday, July 25, 2019 9:06 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

Keep in mind there are two versions of the entire collection: One is indexed by 
Adobe with a .pdx; the other has an index.html file.  As best as I can tell, 
that's the only difference, and if it were up to me, I think I'd just combine 
the two.  However, the .pdx does seem to add a couple hundred pounds to the 
file.

sas

--
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: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Steve Smith
Keep in mind there are two versions of the entire collection: One is
indexed by Adobe with a .pdx; the other has an index.html file.  As best as
I can tell, that's the only difference, and if it were up to me, I think
I'd just combine the two.  However, the .pdx does seem to add a couple
hundred pounds to the file.

sas

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


Re: IBM SFG - Your Opinion

2019-07-25 Thread Sasso, Len
Has anyone had training for the IBM SFG Product?

If so, could you please provide the name of the 3rd Party Vendor who provided 
the training?

How would you rate the training?


Thank You!
Len Sasso
Systems Administrator
General Dynamics Information Technology
327 Columbia TPKE
Rensselaer, NY 12144
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com


-Original Message-
From: Jackson, Rob 
Sent: Thursday, March 14, 2019 3:39 PM
To: Sasso, Len 
Subject: RE: IBM SFG - Your Opinion

Good luck, Len!  If you ever need a shoulder to cry on . . . .  :)

First Tennessee Bank
Mainframe Technical Support
1638 Robert C Jackson Dr
Maryville, TN 37801
O:  865-977-5343
C:  334-201-8516


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Sasso, Len
Sent: Thursday, March 14, 2019 3:32 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: IBM SFG - Your Opinion
Importance: High

[External Email]

We will be doing SFTP.  IBM is installing and we will be working with them to 
implement. We just got Connect:Direct about 1.5 years ago. We are getting 
SFG/SI, SSP, SEAS and CC.  Yes, there sure are "a lot of pieces."

Thank You!

Len Sasso
System Administrator
General Dynamics Information Technology
327 Columbia TPKE
Rensselaer, NY 12144

Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com




-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Jackson, Rob
Sent: Thursday, March 14, 2019 3:26 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: IBM SFG - Your Opinion

It's extremely powerful but oh so onerous to install, maintain, and administer. 
 They will push implementation services, and you will wish you'd bought them 
before it's over if you go it on your own.

What are you planning on doing with it?  If it is just MFT, I would highly 
recommend taking a good hard look at MOVEit first (unless you have a bunch of 
Connect:Direct you have to deal with, since SI/SFG does come with CDSA; you may 
end up not having much choice).

Keep in mind too that you won't need only SFG/SI.  You will need SSP and SEAS 
(if you want to do SFTP; that's another joy) as well.  And you probably will 
want CC.  There are other pieces that have to be installed and configured on 
separate servers (SSPcm and Perimeter Server), but they are part of SSP.  In 
short, there are a lot of pieces.

One more thing, IBM just recently outsourced support and development (I think) 
of the suite to Syncsort, if that sways you either way.

First Tennessee Bank
Mainframe Technical Support

[External Email]

I welcome your comments, suggestions, etc. about the IBM SFG Product.
FIRST TENNESSEE

Confidentiality notice:
This e-mail message, including any attachments, may contain legally privileged 
and/or confidential information. If you are not the intended recipient(s), or 
the employee or agent responsible for delivery of this message to the intended 
recipient(s), you are hereby notified that any dissemination, distribution, or 
copying of this e-mail message is strictly prohibited. If you have received 
this message in error, please immediately notify the sender and delete this 
e-mail message from your computer.

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

This electronic message transmission contains information from CSRA that may be 
attorney-client privileged, proprietary or confidential. The information in 
this message is intended only for use by the individual(s) to whom it is 
addressed. If you believe you have received this message in error, please 
contact me immediately and be aware that any use, disclosure, copying or 
distribution of the contents of this message is strictly prohibited. NOTE: 
Regardless of content, this email shall not operate to bind CSRA to any order 
or other contract unless pursuant to explicit written agreement or government 
initiative expressly permitting the use of email for such purpose.

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

This electronic message transmission contains information from GDIT that may be 
attorney-client privileged, proprietary or confidential. The information in 
this message is intended only for use by the individual(s) to whom it is 
addressed. If you believe you have received this message in error, please 
contact me immediately and be aware that any use, disclosure, copying or 
distribution of the contents of this message is strictly prohibited. NOTE: 
Regardless of content, this email shall not operate to bind GDIT to any order 
or other contract unless pursuant to explicit written agreement or government 
initiative expressly 

Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???

2019-07-25 Thread Jim Brooks
Open the Chrome index in your  z/OS 2.4 folder.
Chrome will not find the file.
Change the current URL in Chrome to point to your z/Os 2.4 folder on your
hard drive.
It will open the Index.html  in your chrome browser.
Works for me.

.
Regards,
Jim



Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>

On Wed, Jul 24, 2019 at 2:13 PM Susan Shumway  wrote:

> Thanks for the notice about this weird behavior, Lionel. I'll alert the
> Collection builder and see if he has any ideas.
>
> -Sue Shumway
>
>
> On 7/24/2019 11:47 AM, Lionel B Dyck wrote:
> > Thanks - did that - but since they claim they get so many issues that
> one should not expect a response.  Thus posting here to see if anyone has
> any solution.
> >
> >
> > Lionel B. Dyck <
> > Website: http://www.lbdsoftware.com
> >
> > "Worry more about your character than your reputation.  Character is
> what you are, reputation merely what others think you are." - John Wooden
> >
> > -Original Message-
> > From: IBM Mainframe Discussion List  On
> Behalf Of Mike Schwab
> > Sent: Wednesday, July 24, 2019 10:45 AM
> > To: IBM-MAIN@LISTSERV.UA.EDU
> > Subject: Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???
> >
> >
> https://support.google.com/chrome/answer/95315?co=GENIE.Platform%3DDesktop=en
> >
> > On Wed, Jul 24, 2019 at 2:32 PM Lionel B Dyck  wrote:
> >>
> >> Works fine in IE and in Edge - just Chrome.
> >>
> >> Already have the file association in Windows set.
> >>
> >>
> >> Lionel B. Dyck <
> >> Website: http://www.lbdsoftware.com
> >>
> >> "Worry more about your character than your reputation.  Character is
> >> what you are, reputation merely what others think you are." - John
> >> Wooden
> >>
> >> -Original Message-
> >> From: IBM Mainframe Discussion List  On
> >> Behalf Of Allan Staller
> >> Sent: Wednesday, July 24, 2019 9:26 AM
> >> To: IBM-MAIN@LISTSERV.UA.EDU
> >> Subject: Re: Using Google Chrome to open IBM z/OS 2.4 Library Index ???
> >>
> >> Windows File Associations?
> >>
> >> Try w/IE or other to see if it is unique to Chrome
> >>
> >> -Original Message-
> >> From: IBM Mainframe Discussion List  On
> >> Behalf Of Lionel B Dyck
> >> Sent: Wednesday, July 24, 2019 9:24 AM
> >> To: IBM-MAIN@LISTSERV.UA.EDU
> >> Subject: Using Google Chrome to open IBM z/OS 2.4 Library Index ???
> >>
> >> When using Google Chrome with a bookmark to the .pdx for the z/OS
> >> library, the pdx opens as a text file.
> >>
> >>
> >>
> >> It opens in Adobe Reader just fine using Edge when bookmarked.
> >>
> >>
> >>
> >> Any suggestions on how to 'fix' Chrome?
> >>
> >>
> >>
> >> tia
> >>
> >>
> >>
> >>
> >>
> >> Lionel B. Dyck <
> >> Website:
> >>  >> lbdsof
> >> tware.com%2Fdata=02%7C01%7Callan.staller%40HCL.COM%7C74e712140585
> >> 48c3de
> >> d208d71042aeea%7C189de737c93a4f5a8b686f4ca9941912%7C0%7C0%7C6369957509
> >> 284020
> >> 19sdata=BVlDjxxqK3ix%2BQyYhZV3wMZUdTfx%2BL78sGU6xQy1Oak%3Dre
> >> served
> >> =0>
> >> https://apc01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fwww.l
> >> bdsoft
> >> ware.comdata=02%7C01%7Callan.staller%40HCL.COM%7C74e71214058548c3
> >> ded208
> >> d71042aeea%7C189de737c93a4f5a8b686f4ca9941912%7C0%7C0%7C63699575092840
> >> 2019
> >> mp;sdata=B3fiylG4AL9Kv4fvCvjcQflnKlHcoNPs2yGW%2FL6DuZU%3Dreserved
> >> =0
> >>
> >> "Worry more about your character than your reputation.  Character is
> >> what you are, reputation merely what others think you are." - John
> >> Wooden
> >>
> >>
> >>
> >>
> >> --
> >> For IBM-MAIN subscribe / signoff / archive access instructions, send
> >> email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> >> ::DISCLAIMER::
> >> --
> >> --
> >> --
> >> --
> >> --
> >> --
> >> --
> >> The contents of this e-mail and any attachment(s) are confidential and
> >> intended for the named recipient(s) only. E-mail transmission is not
> >> guaranteed to be secure or error-free as information could be
> >> intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
> >> may contain viruses in transmission. The e mail and its contents (with
> >> or without referred errors) shall therefore not attach any liability
> >> on the originator or HCL or its affiliates. Views or opinions, if any,
> >> presented in this email are solely those of the author and may not
> >> necessarily reflect the views or opinions of HCL or its affiliates.
> >> Any 

Re: Fwd: It's Official: Open-Plan Offices Are Now the Dumbest Management Fad of All Time | Inc.com

2019-07-25 Thread Jeffrey Holst
Is sending a link to this INC article going to be an annual event? It looked 
familiar, and then I realized that the article was published on July 16, 2018. 
I am pretty sure that someone posted a comment about it on IBM-MAIN back then,

On Wed, 24 Jul 2019 08:29:05 -0400, Mark Regan  wrote:

>For those of you that have to work in that kind of environment or may soon
>someday.
>
>https://www.inc.com/geoffrey-james/its-official-open-plan-offices-are-now-dumbest-management-fad-of-all-time.html
>
>or
>
>*https://tinyurl.com/y36otmps *
>
>Regards,
>
>Mark Regan, K8MTR
>CTO1 USNR-Retired
>Nationwide Insurance, Retired
>
>--
>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: [EXTERNAL] Re: Coupling Facility duplexed

2019-07-25 Thread Horne, Jim - James S
The information on structures is in SMF 74.4 data.  You should be able to run 
RMF, or MXG or other software that can read SMF records and get the information 
you want.

Jim Horne

NOTICE: All information in and attached to the e-mails below may be 
proprietary, confidential, privileged and otherwise protected from improper or 
erroneous disclosure. If you are not the sender's intended recipient, you are 
not authorized to intercept, read, print, retain, copy, forward, or disseminate 
this message. If you have erroneously received this communication, please 
notify the sender immediately by phone (704-758-1000) or by e-mail and destroy 
all copies of this message electronic, paper, or otherwise. By transmitting 
documents via this email: Users, Customers, Suppliers and Vendors collectively 
acknowledge and agree the transmittal of information via email is voluntary, is 
offered as a convenience, and is not a secured method of communication; Not to 
transmit any payment information E.G. credit card, debit card, checking 
account, wire transfer information, passwords, or sensitive and personal 
information E.G. Driver's license, DOB, social security, or any other 
information the user wishes to remain confidential; To transmit only 
non-confidential information such as plans, pictures and drawings and to assume 
all risk and liability for and indemnify Lowe's from any claims, losses or 
damages that may arise from the transmittal of documents or including 
non-confidential information in the body of an email transmittal. Thank you.

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


Re: Coupling Facility duplexed

2019-07-25 Thread Carmen Vitullo
thus my query to the OP... 


Are you talking CF structures ? 







Carmen Vitullo 

- Original Message -

From: "Mark Jacobs" <0224d287a4b1-dmarc-requ...@listserv.ua.edu> 
To: IBM-MAIN@LISTSERV.UA.EDU 
Sent: Thursday, July 25, 2019 7:57:17 AM 
Subject: Re: Coupling Facility duplexed 

That wasn't what the OP asked. One can have duplexed CF's without having any 
duplex structures defined in the active CFRM policy. But if you do see 
structures being duplexed, you've confirmed that your CF's are duplex capable. 

Mark Jacobs 


Sent from ProtonMail, Swiss-based encrypted email. 

GPG Public Key - 
https://api.protonmail.ch/pks/lookup?op=get=markjac...@protonmail.com 

‐‐‐ Original Message ‐‐‐ 
On Thursday, July 25, 2019 8:34 AM, Carmen Vitullo  wrote: 

> Are you talking CF structures ? 
> if so D XCF,STR should get you there 
> among all the structures you should see something like 
> 
> DSNDB21_GBP0 06/22/2019 19:55:25 ALLOCATED (NEW) CACHE 
> CFNAME: CF01 
> DUPLEXING REBUILD 
> METHOD: USER-MANAGED 
> PHASE: DUPLEX ESTABLISHED 
> 
> Carmen Vitullo 
> 
> - Original Message - 
> 
> From: "Bill Giannelli" billgianne...@gmail.com 
> 
> To: IBM-MAIN@LISTSERV.UA.EDU 
> Sent: Thursday, July 25, 2019 3:51:31 AM 
> Subject: Coupling Facility duplexed 
> 
> How do I determine if our Coupling Facility is duplexed? 
> thanks 
> Bill 
> 
> 
>  
> 
> 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 


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


Re: Coupling Facility duplexed

2019-07-25 Thread Vernooij, Kees (ITOP NM) - KLM
It seems the OP got a question on a subject he is not familiar with. 
I would answer him: ask your systems programmer.

Kees.


> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Mark Jacobs
> Sent: 25 July, 2019 14:57
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Coupling Facility duplexed
> 
> That wasn't what the OP asked. One can have duplexed CF's without having
> any duplex structures defined in the active CFRM policy. But if you do see
> structures being duplexed, you've confirmed that your CF's are duplex
> capable.
> 
> Mark Jacobs
> 
> 
> Sent from ProtonMail, Swiss-based encrypted email.
> 
> GPG Public Key -
> https://api.protonmail.ch/pks/lookup?op=get=markjacobs@protonmail.c
> om
> 
> ‐‐‐ Original Message ‐‐‐
> On Thursday, July 25, 2019 8:34 AM, Carmen Vitullo 
> wrote:
> 
> > Are you talking CF structures ?
> > if so D XCF,STR should get you there
> > among all the structures you should see something like
> >
> > DSNDB21_GBP0 06/22/2019 19:55:25 ALLOCATED (NEW) CACHE
> > CFNAME: CF01
> > DUPLEXING REBUILD
> > METHOD: USER-MANAGED
> > PHASE: DUPLEX ESTABLISHED
> >
> > Carmen Vitullo
> >
> > - Original Message -
> >
> > From: "Bill Giannelli" billgianne...@gmail.com
> >
> > To: IBM-MAIN@LISTSERV.UA.EDU
> > Sent: Thursday, July 25, 2019 3:51:31 AM
> > Subject: Coupling Facility duplexed
> >
> > How do I determine if our Coupling Facility is duplexed?
> > thanks
> > Bill
> >
> > 
> --
> --
> >
> > 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

For information, services and offers, please visit our web site: 
http://www.klm.com. This e-mail and any attachment may contain confidential and 
privileged material intended for the addressee only. If you are not the 
addressee, you are notified that no part of the e-mail or any attachment may be 
disclosed, copied or distributed, and that any other action related to this 
e-mail or attachment is strictly prohibited, and may be unlawful. If you have 
received this e-mail by error, please notify the sender immediately by return 
e-mail, and delete this message.

Koninklijke Luchtvaart Maatschappij NV (KLM), its subsidiaries and/or its 
employees shall not be liable for the incorrect or incomplete transmission of 
this e-mail or any attachments, nor responsible for any delay in receipt.
Koninklijke Luchtvaart Maatschappij N.V. (also known as KLM Royal Dutch 
Airlines) is registered in Amstelveen, The Netherlands, with registered number 
33014286



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


Re: Coupling Facility duplexed

2019-07-25 Thread Mark Jacobs
That wasn't what the OP asked. One can have duplexed CF's without having any 
duplex structures defined in the active CFRM policy. But if you do see 
structures being duplexed, you've confirmed that your CF's are duplex capable.

Mark Jacobs


Sent from ProtonMail, Swiss-based encrypted email.

GPG Public Key - 
https://api.protonmail.ch/pks/lookup?op=get=markjac...@protonmail.com

‐‐‐ Original Message ‐‐‐
On Thursday, July 25, 2019 8:34 AM, Carmen Vitullo  wrote:

> Are you talking CF structures ?
> if so D XCF,STR should get you there
> among all the structures you should see something like
>
> DSNDB21_GBP0 06/22/2019 19:55:25 ALLOCATED (NEW) CACHE
> CFNAME: CF01
> DUPLEXING REBUILD
> METHOD: USER-MANAGED
> PHASE: DUPLEX ESTABLISHED
>
> Carmen Vitullo
>
> - Original Message -
>
> From: "Bill Giannelli" billgianne...@gmail.com
>
> To: IBM-MAIN@LISTSERV.UA.EDU
> Sent: Thursday, July 25, 2019 3:51:31 AM
> Subject: Coupling Facility duplexed
>
> How do I determine if our Coupling Facility is duplexed?
> thanks
> Bill
>
> 
>
> 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: Shopz product orders will NOT be available between August 16, 2019 and August 22, 2019 inclusively

2019-07-25 Thread Kurt Quackenbush

On 7/24/2019 3:55 PM, Tony Harminc wrote:

Really...? That sounds very convenient - certainly for those of us using
zPDTs. But in the "Preparaing to use Internet service retrieval" chapter in
the book you mention below, the first item in "How to obtain a user
certificate" is "If you are not yet a ShopzSeries user, register to become
one".

Can you tell me exactly how to get a published PTF via SMP/E without having
Shopz?


Obtaining the user certificate from Shopz is a one time event... well, 
once a year.  Once you have a certificate, you don't need to interact 
with Shopz again to order and download PTFs using SMP/E.


Kurt Quackenbush -- IBM, SMP/E Development
Chuck Norris never uses CHECK when he applies PTFs.

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


Re: Coupling Facility duplexed

2019-07-25 Thread Carmen Vitullo
Are you talking CF structures ? 
if so D XCF,STR should get you there 
among all the structures you should see something like 



DSNDB21_GBP0 06/22/2019 19:55:25 ALLOCATED (NEW) CACHE 
CFNAME: CF01 
DUPLEXING REBUILD 
METHOD: USER-MANAGED 
PHASE: DUPLEX ESTABLISHED 

Carmen Vitullo 

- Original Message -

From: "Bill Giannelli"  
To: IBM-MAIN@LISTSERV.UA.EDU 
Sent: Thursday, July 25, 2019 3:51:31 AM 
Subject: Coupling Facility duplexed 

How do I determine if our Coupling Facility is duplexed? 
thanks 
Bill 

-- 
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: Friday!

2019-07-25 Thread Carmen Vitullo
:) yup toggle switches, and you had to read the display (lights), interpret, to 
make sure the system was ready to read your card program. 


My senior project was to re write the attendance program in RPG, to print the 
class name from the card input (each class's student had a 5081 card) with the 
student name and class code, I was to list each student that was absent in each 
class, tally the total from each class and the percentage of students absent, 
then a total for the school, Initially I kept a internal table class code to 
class name, that changed quickly when I blew core in the assembly, we had an 
outstanding 8k of storage to work with :) 
the other part of the project was to replicate this program on the 405 
accounting machine's wiring board, for DR purposes ! 
ah school ! 





Carmen Vitullo 

- Original Message -

From: "zMan"  
To: IBM-MAIN@LISTSERV.UA.EDU 
Sent: Wednesday, July 24, 2019 4:58:11 PM 
Subject: Re: Friday! 

You had switches? We had to hard-wire the cores... 

On Mon, Jul 22, 2019 at 11:01 AM Carmen Vitullo  wrote: 

> same here, but on a Univac processor we had in school, all done by 
> switches. 
> 
> 
> Carmen Vitullo 
> 
> - Original Message - 
> 
> From: "Gary Weinhold"  
> To: IBM-MAIN@LISTSERV.UA.EDU 
> Sent: Monday, July 22, 2019 9:49:38 AM 
> Subject: Re: Friday! 
> 
> I almost remember how to do it on an IBM 1620 and had to do it on an 
> Amdahl 470 V6 (in two steps). But it was a machine language routine, 
> but you seem to be referring to perhaps a buit-in function of the 
> hardware. 
> 
> Gary 
> 
> BobL wrote: 
> 
> > Hi All, 
> > 
> > Who remembers how to "ripple core" on a 360/75J? Back in the day, I was 
> taught that it "wrote un-digit zeros" to all storage locations (main + LCS) 
> on the box. If course, an IPL was required after this was done. 
> > 
> > Not sure how widely it was used. A simple yes or no is OK if you cannot 
> provide details.  
> > 
> > Thanks! 
> > BobL 
> 
> 
> Gary Weinhold 
> Senior Application Architect 
> DATAKINETICS | Data Performance & Optimization 
> Phone:+1.613.523.5500 x216 
> Email: weinh...@dkl.com 
> Visit us online at www.DKL.com 
> E-mail Notification: The information contained in this email and any 
> attachments is confidential and may be subject to copyright or other 
> intellectual property protection. If you are not the intended recipient, 
> you are not authorized to use or disclose this information, and we request 
> that you notify us by reply mail or telephone and delete the original 
> message from your mail system. 
> 
> 
> 
> -- 
> 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 
> 


-- 
zMan -- "I've got a mainframe and I'm not afraid to use it" 

-- 
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: What's the intent of the "LOAD AND ZERO RIGHTMOST BYTE" instruction?

2019-07-25 Thread Peter Relson
I don't know the answer, but the usual answer is:
because either the Java team or the compiler team found something 
beneficial to having it.

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: Coupling Facility duplexed

2019-07-25 Thread Mark Jacobs
I issued a D CF command on my system, and it's showing this;

REMOTELY CONNECTED COUPLING FACILITIES
   CFNAME  COUPLING FACILITY
   --
   FACIL09 00.IBM.02.000x
   PARTITION: 0x  CPCID: 00

The other CF is showing similar information.

Mark Jacobs


Sent from ProtonMail, Swiss-based encrypted email.

GPG Public Key - 
https://api.protonmail.ch/pks/lookup?op=get=markjac...@protonmail.com

‐‐‐ Original Message ‐‐‐
On Thursday, July 25, 2019 4:51 AM, Bill Giannelli  
wrote:

> How do I determine if our Coupling Facility is duplexed?
> thanks
> Bill
>
> -
>
> 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: DASD nostalgia

2019-07-25 Thread George Rodriguez
I remember when disk were removable and an operator made the mistake of
moving a damaged disk to 3 other drives, before we stopped him. Those were
the days...

*George Rodriguez*

*Specialist II - IT Security*
*PX - 47652*
*(561) 357-7652 (office)*
*(954) 415-7586 (mobile)*
*School District of Palm Beach County*
*3348 Forest Hill Blvd.*
*Room B-332*
*West Palm Beach, FL. 33406-5869*
*Florida's Only A-Rated Urban District*


On Wed, Jul 24, 2019 at 5:42 PM Seymour J Metz  wrote:

> > How did they compensate for GR frame dragging?
>
> They asked a young lady named Bright, who was a person of some gravity.
>
> http://mason.gmu.edu/~smetz3/humor/GR.pdf
>
>
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
>
> 
> From: IBM Mainframe Discussion List  on behalf
> of Paul Gilmartin <000433f07816-dmarc-requ...@listserv.ua.edu>
> Sent: Wednesday, July 24, 2019 5:24 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: DASD nostalgia
>
> On Mon, 22 Jul 2019 21:56:22 -0400, William Donzelli wrote:
>
> >> I'm thinking that just because one article says the story is urban
> legend, there are more references that talk to the FirstRand I actually
> being installed on a US Navy ship.
> >
> Please leave the attribution when you quote text.
>
> >I have no doubts about a Fastrand being on installed on a ship. I have
> >my doubts about the spinning drum causing havoc.I can buy that the
> >Fastrand beat itself to death with the bearings wearing out very
> >quickly.
> >
> How did they compensate for GR frame dragging?
>
> -- 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
>

-- 






*Disclaimer: *Under Florida law, e-mail addresses are public records. 
If you do not want your e-mail address released in response to a public 
records request, do not send electronic mail to this entity. Instead, 
contact this office by phone or in writing.








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


Coupling Facility duplexed

2019-07-25 Thread Bill Giannelli
How do I determine if our Coupling Facility is duplexed?
thanks
Bill

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


Re: Linux address space on z/OS 2.4

2019-07-25 Thread Martin Packer

Three I can think of straightway:

1) No Linux sysproging
2) WLM workload management
3) Proximity to the data

I think it’s going to be VERY interesting to see what architectures and
operational regimes people come up with.

Cheers, Martin

Sent from my iPad

> On 25 Jul 2019, at 11:22, Jake Anderson  wrote:
>
> Hi
>
> Just curious about 2.4 ?
>
> Running Linux as an address space in zOS will have an advantage over the
> linux on zVM ?
>
> This is just a question out of curiosity.
>
> Jake
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>Unless stated otherwise above:
IBM United Kingdom Limited - Registered in England and Wales with number 
741598. 
Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU


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


z/OSMF problem

2019-07-25 Thread Mike Shorkend
Hi
I successfully configured z/OSMF on a sandbox system.
Now I am trying to get it to work in a development environment and when I
start the server I am getting

JVMDUMP039I Processing dump event "systhrow", detail "java/lang/
OutOfMemoryError" at 2019/07/25 06:35:29 - please wait.
JVMDUMP032I JVM requested System dump using
'DIZUSVR.JVM.IZUSVR1.D190725.T063529.X' in response to an event

IEATDUMP in progress with options
SDATA=(LPA,GRSQ,LSQA,NUC,PSA,RGN,SQA,SUM,SWA,TRT)

IEATDUMP success for DSN='DIZUSVR.JVM.IZUSVR1.D190725.T063529.X'

After that there are a whole bunch of dumps written, threads failing to
create etc.

I am not sure why this would be different to the sandbox(which is much
smaller in real storage and has no ZIIPS) Obviously I need to increase the
memory size , but how do you tell the zOSMF JVM to do that?


z/OS 2.2

Any ideas?

Thanks

Mike





-- 
Mike Shorkend
m...@shorkend.com
www.shorkend.com
Tel: +972524208743
Fax: +97239772196

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


Re: z/OS V2R4 product documentation is published!

2019-07-25 Thread Vernooij, Kees (ITOP NM) - KLM
Hi Sue,

I was talking in general, I am sure if I saw it in IBM publications.

Kees.


> -Original Message-
> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On
> Behalf Of Susan Shumway
> Sent: 24 July, 2019 20:10
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: z/OS V2R4 product documentation is published!
> 
> Hi Gil and Kees,
> 
> Interesting - can you point me to an example? Some PDFs that I just
> tested all have form numbers that I can copy and paste...
> 
> -Sue Shumway
> 
> On 7/24/2019 2:05 AM, Vernooij, Kees - KLM , ITOP NM wrote:
> > I agree, a small detail, but a large irritator, seen often.
> >
> > Kees
> >
> >> -Original Message-
> >> From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU]
> On
> >> Behalf Of Paul Gilmartin
> >> Sent: 24 July, 2019 6:23
> >> To: IBM-MAIN@LISTSERV.UA.EDU
> >> Subject: Re: z/OS V2R4 product documentation is published!
> >>
> >> On Tue, 23 Jul 2019 16:57:37 -0400, Susan Shumway wrote:
> >>>
> >>> All formats of the z/OS V2R4 product documentation are now published!
> >>> Links to everything are on the z/OS Internet Library:
> >>>
> https://www.ibm.com/servers/resourcelink/svc00100.nsf/pages/zosInternetLi
> >> brary
> >>>
> >> Thanks, very nice on first glance!
> >>> ...
> >>> Otherwise, as always, we welcome and value your input, so let us know
> >>> what you think!
> >>>
> >> But, grrr!, the part number on the cover of at least one PDF book is a
> >> graphic; nearly impossible to copy and paste in a review.
> >>
> >> Thanks,
> >> gil
> >>
> >> --
> >> For IBM-MAIN subscribe / signoff / archive access instructions,
> >> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> > 
> > For information, services and offers, please visit our web site:
> http://www.klm.com. This e-mail and any attachment may contain
> confidential and privileged material intended for the addressee only. If
> you are not the addressee, you are notified that no part of the e-mail or
> any attachment may be disclosed, copied or distributed, and that any other
> action related to this e-mail or attachment is strictly prohibited, and
> may be unlawful. If you have received this e-mail by error, please notify
> the sender immediately by return e-mail, and delete this message.
> >
> > Koninklijke Luchtvaart Maatschappij NV (KLM), its subsidiaries and/or
> its employees shall not be liable for the incorrect or incomplete
> transmission of this e-mail or any attachments, nor responsible for any
> delay in receipt.
> > Koninklijke Luchtvaart Maatschappij N.V. (also known as KLM Royal Dutch
> Airlines) is registered in Amstelveen, The Netherlands, with registered
> number 33014286
> > 
> >
> >
> > --
> > For IBM-MAIN subscribe / signoff / archive access instructions,
> > send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
> >
> 
> --
> Sue Shumway
> z/OS Product Documentation Lead
> IBM Poughkeepsie
> chale...@us.ibm.com
> 
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN

For information, services and offers, please visit our web site: 
http://www.klm.com. This e-mail and any attachment may contain confidential and 
privileged material intended for the addressee only. If you are not the 
addressee, you are notified that no part of the e-mail or any attachment may be 
disclosed, copied or distributed, and that any other action related to this 
e-mail or attachment is strictly prohibited, and may be unlawful. If you have 
received this e-mail by error, please notify the sender immediately by return 
e-mail, and delete this message.

Koninklijke Luchtvaart Maatschappij NV (KLM), its subsidiaries and/or its 
employees shall not be liable for the incorrect or incomplete transmission of 
this e-mail or any attachments, nor responsible for any delay in receipt.
Koninklijke Luchtvaart Maatschappij N.V. (also known as KLM Royal Dutch 
Airlines) is registered in Amstelveen, The Netherlands, with registered number 
33014286



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