Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Jousma, David
Never heard of the utility.  Why would that be needed?

_
Dave Jousma
AVP | Director, Technology Engineering  

Fifth Third Bank  |  1830 East Paris Ave, SE  |  MD RSCB2H  |  Grand Rapids, MI 
49546
616.653.8429  |  fax: 616.653.2717


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
David Spiegel
Sent: Sunday, October 18, 2020 12:42 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

Hi Dave,
If it's a Linklisted PDSE, you also may have to run IEBPDSE after the members 
are deleted.

Regards,
David

On 2020-10-18 00:11, Jousma, David wrote:
> That’s what I was going to say...doesnt get much easier.  I do this 
> all the time when I want to update the contents of a linklisted 
> dataset
>
> //IDCAMS   EXEC PGM=IDCAMS
> //SYSUDUMP DD   SYSOUT=*
> //SYSPRINT DD   SYSOUT=*
> //LIBRARY  DD DSN=your.pds.dataset,DISP=SHR //SYSIN DD *
>DELETE your.pds.dataset(*)   FILE(LIBRARY)
> /*
> __
> ___
> Dave Jousma
> AVP | Director, Technology Engineering
>
> Fifth Third Bank  |  1830 East Paris Ave, SE  |  MD RSCB2H  |  Grand 
> Rapids, MI 49546
> 616.653.8429  |  fax: 616.653.2717
>
>
> -Original Message-
> From: IBM Mainframe Discussion List  On 
> Behalf Of Steve Horein
> Sent: Saturday, October 17, 2020 6:49 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down
>
> **CAUTION EXTERNAL EMAIL**
>
> **DO NOT open attachments or click on links from unknown senders or 
> unexpected emails**
>
> Good ole IDCAMS anyone?
> https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.
> ibm.com%2Fsupport%2Fknowledgecenter%2FSSLTBW_2.4.0%2Fcom.ibm.zos.v2r4.
> idai200%2Fdgt3i231.htmdata=04%7C01%7C%7Cffe03d56aebe4262c3d308d87
> 31bfa0e%7C84df9e7fe9f640afb435%7C1%7C0%7C63738591128477962
> 1%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6
> Ik1haWwiLCJXVCI6Mn0%3D%7C1000sdata=iyei6oTeqNIWXdTCZAFKf6vOccPPSd
> ryGpw8M8cBiwg%3Dreserved=0
>
>
> On Sat, Oct 17, 2020 at 5:34 PM Chris Hoelscher 
> 
> wrote:
>
>> I have employed this REXX script for years:
>>
>> /* REXX */
>> DSNAME = 'my PDS'
>> DSN = STRIP(DSNAME, 'BOTH', ) /* IN CASE IT'S IN QUOTES */ QUOTE 
>> = "'"
>> QDSN  = QUOTE||DSN||QUOTE /* FULLY QUOTED DSN */
>>
>> ADDRESS ISPEXEC
>> "LMINIT  DATAID( MYDATAID)  DATASET(" QDSN ") ENQ(SHRW)"
>> "LMOPEN  DATAID("MYDATAID") OPTION(OUTPUT)"
>> "LMMDEL  DATAID("MYDATAID") MEMBER(*)"
>> "LMCLOSE DATAID("MYDATAID")"
>> "LMFREE  DATAID("MYDATAID")"
>>
>>   SAY DSN " IS NOW EMPTY"
>>
>> Chris Hoelscher
>> Lead Sys DBA
>> IBM Global Technical Services on assignmemt to Humana Inc.
>> T 502.476.2538  or 502.407.7266
>>
>>
>> The information transmitted is intended only for the person or entity 
>> to which it is addressed and may contain CONFIDENTIAL material.  If 
>> you receive this material/information in error, please contact the 
>> sender and delete or destroy the material/information.
>>
>> Humana Inc. and its subsidiaries comply with applicable Federal civil 
>> rights laws and do not discriminate on the basis of race, color, 
>> national origin, ancestry, age, disability, sex, marital status, 
>> gender, sexual orientation, gender identity, or religion.
>> Humana Inc. and its subsidiaries do not exclude people or treat them 
>> differently because of race, color, national origin, ancestry, age, 
>> disability, sex, marital status, gender, sexual orientation, gender 
>> identity, or religion.
>>
>> English: ATTENTION: If you do not speak English, language assistance 
>> services, free of charge, are available to you. Call 1‐877‐320‐1235
>> (TTY: 711).
>>
>> Español (Spanish): ATENCIÓN: Si habla español, tiene a su disposición 
>> servicios gratuitos de asistencia lingüística. Llame al 
>> 1‐877‐320‐1235
>> (TTY: 711).
>>
>> 繁體中文(Chinese):注意:如果您使用繁體中文,您可以免費獲得語言援助
>> 服務。請致電 1‐877‐320‐1235 (TTY: 711)。
>>
>> Kreyòl Ayisyen (Haitian Creole): ATANSION: Si w pale Kreyòl Ayisyen, 
>> gen sèvis èd pou lang ki disponib gratis pou ou. Rele 1‐877‐320‐1235
>> (TTY: 711).
>>
>> Polski (Polish): UWAGA: Jeżeli mówisz po polsku, możesz skorzystać z 
>> bezpłatnej pomocy językowej. Zadzwoń pod numer 1‐877‐320‐1235 (TTY:
>> 711).
>>
>> 한국어 (Korean): 주의: 한국어를 사용하시는 경우, 언어 지원 서비스를 무료로 이용하실 수 있습니다.
>> 1‐877‐320‐1235 (TTY: 711)번으로 전화해 주십시오.
>>
>>
>> -
>> - For IBM-MAIN subscribe / signoff / archive access instructions, 
>> send email to lists...@listserv.ua.edu with the message: INFO 
>> IBM-MAIN
>>
> --
> For IBM-MAIN 

Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread David Spiegel

Hi Dave,
If it's a Linklisted PDSE, you also may have to run IEBPDSE after the 
members are deleted.


Regards,
David

On 2020-10-18 00:11, Jousma, David wrote:

That’s what I was going to say...doesnt get much easier.  I do this all the 
time when I want to update the contents of a linklisted dataset

//IDCAMS   EXEC PGM=IDCAMS
//SYSUDUMP DD   SYSOUT=*
//SYSPRINT DD   SYSOUT=*
//LIBRARY  DD DSN=your.pds.dataset,DISP=SHR
//SYSIN DD *
   DELETE your.pds.dataset(*)   FILE(LIBRARY)
/*
_
Dave Jousma
AVP | Director, Technology Engineering

Fifth Third Bank  |  1830 East Paris Ave, SE  |  MD RSCB2H  |  Grand Rapids, MI 
49546
616.653.8429  |  fax: 616.653.2717


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Steve Horein
Sent: Saturday, October 17, 2020 6:49 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

Good ole IDCAMS anyone?
https://eur05.safelinks.protection.outlook.com/?url=https%3A%2F%2Fwww.ibm.com%2Fsupport%2Fknowledgecenter%2FSSLTBW_2.4.0%2Fcom.ibm.zos.v2r4.idai200%2Fdgt3i231.htmdata=04%7C01%7C%7Cffe03d56aebe4262c3d308d8731bfa0e%7C84df9e7fe9f640afb435%7C1%7C0%7C637385911284779621%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000sdata=iyei6oTeqNIWXdTCZAFKf6vOccPPSdryGpw8M8cBiwg%3Dreserved=0


On Sat, Oct 17, 2020 at 5:34 PM Chris Hoelscher 
wrote:


I have employed this REXX script for years:

/* REXX */
DSNAME = 'my PDS'
DSN = STRIP(DSNAME, 'BOTH', ) /* IN CASE IT'S IN QUOTES */ QUOTE =
"'"
QDSN  = QUOTE||DSN||QUOTE /* FULLY QUOTED DSN */

ADDRESS ISPEXEC
"LMINIT  DATAID( MYDATAID)  DATASET(" QDSN ") ENQ(SHRW)"
"LMOPEN  DATAID("MYDATAID") OPTION(OUTPUT)"
"LMMDEL  DATAID("MYDATAID") MEMBER(*)"
"LMCLOSE DATAID("MYDATAID")"
"LMFREE  DATAID("MYDATAID")"

  SAY DSN " IS NOW EMPTY"

Chris Hoelscher
Lead Sys DBA
IBM Global Technical Services on assignmemt to Humana Inc.
T 502.476.2538  or 502.407.7266


The information transmitted is intended only for the person or entity
to which it is addressed and may contain CONFIDENTIAL material.  If
you receive this material/information in error, please contact the
sender and delete or destroy the material/information.

Humana Inc. and its subsidiaries comply with applicable Federal civil
rights laws and do not discriminate on the basis of race, color,
national origin, ancestry, age, disability, sex, marital status,
gender, sexual orientation, gender identity, or religion.
Humana Inc. and its subsidiaries do not exclude people or treat them
differently because of race, color, national origin, ancestry, age,
disability, sex, marital status, gender, sexual orientation, gender
identity, or religion.

English: ATTENTION: If you do not speak English, language assistance
services, free of charge, are available to you. Call 1‐877‐320‐1235
(TTY: 711).

Español (Spanish): ATENCIÓN: Si habla español, tiene a su disposición
servicios gratuitos de asistencia lingüística. Llame al 1‐877‐320‐1235
(TTY: 711).

繁體中文(Chinese):注意:如果您使用繁體中文,您可以免費獲得語言援助
服務。請致電 1‐877‐320‐1235 (TTY: 711)。

Kreyòl Ayisyen (Haitian Creole): ATANSION: Si w pale Kreyòl Ayisyen,
gen sèvis èd pou lang ki disponib gratis pou ou. Rele 1‐877‐320‐1235
(TTY: 711).

Polski (Polish): UWAGA: Jeżeli mówisz po polsku, możesz skorzystać z
bezpłatnej pomocy językowej. Zadzwoń pod numer 1‐877‐320‐1235 (TTY:
711).

한국어 (Korean): 주의: 한국어를 사용하시는 경우, 언어 지원 서비스를 무료로 이용하실 수 있습니다.
1‐877‐320‐1235 (TTY: 711)번으로 전화해 주십시오.


--
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 **CAUTION EXTERNAL 
EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


--
For IBM-MAIN subscribe / signoff / archive access 

Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Paul Gilmartin
On Sat, 17 Oct 2020 16:19:40 -0700, Charles Mills wrote:

>Back in the late sixties ... I wrote a quick program that exactly filled the 
>remaining space in the library and named it ALL. They ran the appropriate 
>utility with the control statement DELETC ALL with the predictable results. 
>They were as unhappy with me as I was with them.
> 
So can you claim to be the inventor of code injection?

I found an injection weakness in "skulker" Exec.  I never exploited it but got
an integrity APAR.

>-Original Message-
>From: Charles Mills
>Sent: Saturday, October 17, 2020 4:13 PM
>
>I would suggest shooting the creator.
> 
Please don't do that.  When I was first learning JCL I experimented with DSNAMEs
protected by apostrophes. With IEFBR14 and DD DISP=(NEW,KEEP) I created
various data set names containing blanks, apostrophes, binary zeroes,
lower case, long qualifiers, ...

A few days later, irate storage administrators descended on me.  I had crashed
their utility that scratched uncatalogued data sets.

But shooting me would have inconvenienced more than assisted them.

They need a better utility; one that could deal with any DSNAME a programmer
could create.

-- gil

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


Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Jousma, David
That’s what I was going to say...doesnt get much easier.  I do this all the 
time when I want to update the contents of a linklisted dataset

//IDCAMS   EXEC PGM=IDCAMS  
//SYSUDUMP DD   SYSOUT=*
//SYSPRINT DD   SYSOUT=*
//LIBRARY  DD DSN=your.pds.dataset,DISP=SHR 
//SYSIN DD *
  DELETE your.pds.dataset(*)   FILE(LIBRARY)   
/*  
_
Dave Jousma
AVP | Director, Technology Engineering  

Fifth Third Bank  |  1830 East Paris Ave, SE  |  MD RSCB2H  |  Grand Rapids, MI 
49546
616.653.8429  |  fax: 616.653.2717


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Steve Horein
Sent: Saturday, October 17, 2020 6:49 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

Good ole IDCAMS anyone?
https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.idai200/dgt3i231.htm


On Sat, Oct 17, 2020 at 5:34 PM Chris Hoelscher 
wrote:

> I have employed this REXX script for years:
>
> /* REXX */
> DSNAME = 'my PDS'
> DSN = STRIP(DSNAME, 'BOTH', ) /* IN CASE IT'S IN QUOTES */ QUOTE = 
> "'"
> QDSN  = QUOTE||DSN||QUOTE /* FULLY QUOTED DSN */
>
> ADDRESS ISPEXEC
> "LMINIT  DATAID( MYDATAID)  DATASET(" QDSN ") ENQ(SHRW)"
> "LMOPEN  DATAID("MYDATAID") OPTION(OUTPUT)"
> "LMMDEL  DATAID("MYDATAID") MEMBER(*)"
> "LMCLOSE DATAID("MYDATAID")"
> "LMFREE  DATAID("MYDATAID")"
>
>  SAY DSN " IS NOW EMPTY"
>
> Chris Hoelscher
> Lead Sys DBA
> IBM Global Technical Services on assignmemt to Humana Inc.
> T 502.476.2538  or 502.407.7266
>
>
> The information transmitted is intended only for the person or entity 
> to which it is addressed and may contain CONFIDENTIAL material.  If 
> you receive this material/information in error, please contact the 
> sender and delete or destroy the material/information.
>
> Humana Inc. and its subsidiaries comply with applicable Federal civil 
> rights laws and do not discriminate on the basis of race, color, 
> national origin, ancestry, age, disability, sex, marital status, 
> gender, sexual orientation, gender identity, or religion.
> Humana Inc. and its subsidiaries do not exclude people or treat them 
> differently because of race, color, national origin, ancestry, age, 
> disability, sex, marital status, gender, sexual orientation, gender 
> identity, or religion.
>
> English: ATTENTION: If you do not speak English, language assistance 
> services, free of charge, are available to you. Call 1‐877‐320‐1235 
> (TTY: 711).
>
> Español (Spanish): ATENCIÓN: Si habla español, tiene a su disposición 
> servicios gratuitos de asistencia lingüística. Llame al 1‐877‐320‐1235 
> (TTY: 711).
>
> 繁體中文(Chinese):注意:如果您使用繁體中文,您可以免費獲得語言援助
> 服務。請致電 1‐877‐320‐1235 (TTY: 711)。
>
> Kreyòl Ayisyen (Haitian Creole): ATANSION: Si w pale Kreyòl Ayisyen, 
> gen sèvis èd pou lang ki disponib gratis pou ou. Rele 1‐877‐320‐1235 
> (TTY: 711).
>
> Polski (Polish): UWAGA: Jeżeli mówisz po polsku, możesz skorzystać z 
> bezpłatnej pomocy językowej. Zadzwoń pod numer 1‐877‐320‐1235 (TTY: 
> 711).
>
> 한국어 (Korean): 주의: 한국어를 사용하시는 경우, 언어 지원 서비스를 무료로 이용하실 수 있습니다. 
> 1‐877‐320‐1235 (TTY: 711)번으로 전화해 주십시오.
>
>
> --
> 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 **CAUTION EXTERNAL 
EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

This e-mail transmission contains information that is confidential and may be 
privileged.   It is intended only for the addressee(s) named above. If you 
receive this e-mail in error, please do not read, copy or disseminate it in any 
manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.


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


Re: Checksum/Md5 file

2020-10-17 Thread Sasso, Len
Hi Mike!

I will contact you on Monday, have a wonderful weekend !

Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

Office Hours: M-F  7 AM - 3:45 PM
Out-Of-Office: Tue., Oct. 20th  - 1:30 PM - Wed., Oct 21st @ 7 AM
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com





From: IBM Mainframe Discussion List  on behalf of 
Mike Hochee 
Sent: Saturday, October 17, 2020 11:16 PM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Checksum/Md5 file



 [External: Use caution with links & attachments]

Hi Len,

Let's take this conversation out of the IBM-MAIN listserv. Feel free to contact 
me at mike.hoc...@aspg.com

Thanks,
Mike

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Sasso, Len
Sent: Saturday, October 17, 2020 10:14 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum/Md5 file

Caution! This message was sent from outside your organization.

Hi Mike!

We don't have the MGCMAIN utility, but I would appreciate any JCL you could 
provide to call to a crypto subroutine library.



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

Office Hours: M-F  7 AM - 3:45 PM
Out-Of-Office: Tue., Oct. 20th  - 1:30 PM - Wed., Oct 21st @ 7 AM
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com





From: IBM Mainframe Discussion List  on behalf of 
Mike Hochee 
Sent: Friday, October 16, 2020 11:28 PM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Checksum/Md5 file



 [External: Use caution with links & attachments]

Hi Len Sasso,

As mentioned, you can roll your own and invoke an ICSF service routine, or you 
can use one of several z/OS crypto products. I work for ASPG, so am 
particularly familiar with MegaCryption on z/OS. With MegaCryption this can be 
done using the MGCMAIN utility or via an application call to a crypto 
subroutine library. Since you may already be a customer, I will send you 
additional details offline.

HTH,
Mike

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Lennie Dymoke-Bradshaw
Sent: Friday, October 16, 2020 7:37 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum/Md5 file

Caution! This message was sent from outside your organization.

Please note too that the CSNBOWH implementation requires ICSF to be active, but 
does not require any Crypto Express hardware, nor is it dependent on the CPACF. 
It is a software solution that executes within ICSF.

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Jousma, David
Sent: 16 October 2020 20:07
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum/Md5 file

Yes.
https://urldefense.us/v3/__https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.1.0/com.ibm.zos.v2r1__;!!JRQnnSFuzw7wjAKq6ti6!laGxlsZ9OhaGNPUyv1oKZ8200gQ-WxaNoleYDXYyZw60WbVRqd1Ie6AbLcOrOg$
.csfb400/csfb4za229.htm



_
Dave Jousma
AVP | Director, Technology Engineering

Fifth Third Bank  |  1830 East Paris Ave, SE  |  MD RSCB2H  |  Grand Rapids, MI 
49546
616.653.8429  |  fax: 616.653.2717


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Sasso, Len
Sent: Friday, October 16, 2020 2:54 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Checksum/Md5 file

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

Anyone know if a Checksum/Md5 file can be created on a IBM Mainframe?

If so, how?


Thank You and Please
 Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144
Office Hours: M-F  7 AM - 3:45 PM
Out-Of-Office: Tue., Oct. 20th  - 1:30 PM - Wed., Oct 21st @ 7 AM
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: http://www.gdit.com














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

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**


This e-mail transmission contains information that is confidential and may
be privileged.   It is intended only for the addressee(s) named above. If
you receive this e-mail in error, please do not read, copy or disseminate it in 
any manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this 

Re: Checksum/Md5 file

2020-10-17 Thread Mike Hochee
Hi Len, 

Let's take this conversation out of the IBM-MAIN listserv. Feel free to contact 
me at mike.hoc...@aspg.com  

Thanks, 
Mike 

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Sasso, Len
Sent: Saturday, October 17, 2020 10:14 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum/Md5 file

Caution! This message was sent from outside your organization.

Hi Mike!

We don't have the MGCMAIN utility, but I would appreciate any JCL you could 
provide to call to a crypto subroutine library.



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

Office Hours: M-F  7 AM - 3:45 PM
Out-Of-Office: Tue., Oct. 20th  - 1:30 PM - Wed., Oct 21st @ 7 AM
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com





From: IBM Mainframe Discussion List  on behalf of 
Mike Hochee 
Sent: Friday, October 16, 2020 11:28 PM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Checksum/Md5 file



 [External: Use caution with links & attachments]

Hi Len Sasso,

As mentioned, you can roll your own and invoke an ICSF service routine, or you 
can use one of several z/OS crypto products. I work for ASPG, so am 
particularly familiar with MegaCryption on z/OS. With MegaCryption this can be 
done using the MGCMAIN utility or via an application call to a crypto 
subroutine library. Since you may already be a customer, I will send you 
additional details offline.

HTH,
Mike

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Lennie Dymoke-Bradshaw
Sent: Friday, October 16, 2020 7:37 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum/Md5 file

Caution! This message was sent from outside your organization.

Please note too that the CSNBOWH implementation requires ICSF to be active, but 
does not require any Crypto Express hardware, nor is it dependent on the CPACF. 
It is a software solution that executes within ICSF.

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Jousma, David
Sent: 16 October 2020 20:07
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum/Md5 file

Yes.
https://urldefense.us/v3/__https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.1.0/com.ibm.zos.v2r1__;!!JRQnnSFuzw7wjAKq6ti6!laGxlsZ9OhaGNPUyv1oKZ8200gQ-WxaNoleYDXYyZw60WbVRqd1Ie6AbLcOrOg$
.csfb400/csfb4za229.htm



_
Dave Jousma
AVP | Director, Technology Engineering

Fifth Third Bank  |  1830 East Paris Ave, SE  |  MD RSCB2H  |  Grand Rapids, MI 
49546
616.653.8429  |  fax: 616.653.2717


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Sasso, Len
Sent: Friday, October 16, 2020 2:54 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Checksum/Md5 file

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

Anyone know if a Checksum/Md5 file can be created on a IBM Mainframe?

If so, how?


Thank You and Please
 Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144
Office Hours: M-F  7 AM - 3:45 PM
Out-Of-Office: Tue., Oct. 20th  - 1:30 PM - Wed., Oct 21st @ 7 AM
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: http://www.gdit.com














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

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**


This e-mail transmission contains information that is confidential and may
be privileged.   It is intended only for the addressee(s) named above. If
you receive this e-mail in error, please do not read, copy or disseminate it in 
any manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.

--
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: Checksum/Md5 file

2020-10-17 Thread Sasso, Len
Hi Mike!

We don't have the MGCMAIN utility, but I would appreciate any JCL you could 
provide to call to a crypto subroutine library.



Thank You and Please Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144

Office Hours: M-F  7 AM - 3:45 PM
Out-Of-Office: Tue., Oct. 20th  - 1:30 PM - Wed., Oct 21st @ 7 AM
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: www.gdit.com





From: IBM Mainframe Discussion List  on behalf of 
Mike Hochee 
Sent: Friday, October 16, 2020 11:28 PM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Checksum/Md5 file



 [External: Use caution with links & attachments]

Hi Len Sasso,

As mentioned, you can roll your own and invoke an ICSF service routine, or you 
can use one of several z/OS crypto products. I work for ASPG, so am 
particularly familiar with MegaCryption on z/OS. With MegaCryption this can be 
done using the MGCMAIN utility or via an application call to a crypto 
subroutine library. Since you may already be a customer, I will send you 
additional details offline.

HTH,
Mike

-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Lennie Dymoke-Bradshaw
Sent: Friday, October 16, 2020 7:37 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum/Md5 file

Caution! This message was sent from outside your organization.

Please note too that the CSNBOWH implementation requires ICSF to be active, but 
does not require any Crypto Express hardware, nor is it dependent on the CPACF. 
It is a software solution that executes within ICSF.

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Jousma, David
Sent: 16 October 2020 20:07
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Checksum/Md5 file

Yes.
https://urldefense.us/v3/__https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.1.0/com.ibm.zos.v2r1__;!!JRQnnSFuzw7wjAKq6ti6!laGxlsZ9OhaGNPUyv1oKZ8200gQ-WxaNoleYDXYyZw60WbVRqd1Ie6AbLcOrOg$
.csfb400/csfb4za229.htm



_
Dave Jousma
AVP | Director, Technology Engineering

Fifth Third Bank  |  1830 East Paris Ave, SE  |  MD RSCB2H  |  Grand Rapids, MI 
49546
616.653.8429  |  fax: 616.653.2717


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Sasso, Len
Sent: Friday, October 16, 2020 2:54 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Checksum/Md5 file

**CAUTION EXTERNAL EMAIL**

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**

Anyone know if a Checksum/Md5 file can be created on a IBM Mainframe?

If so, how?


Thank You and Please
 Be Safe!

Len Sasso
Systems Administrator Senior
CSRA, A General Dynamics Information Technology Company
327 Columbia TPKE
Rensselaer, NY 12144
Office Hours: M-F  7 AM - 3:45 PM
Out-Of-Office: Tue., Oct. 20th  - 1:30 PM - Wed., Oct 21st @ 7 AM
Phone: (518) 257-4209
Cell: (518) 894-0879
Fax: (518) 257-4300
len.sa...@gdit.com
URL: http://www.gdit.com














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

**DO NOT open attachments or click on links from unknown senders or unexpected 
emails**


This e-mail transmission contains information that is confidential and may
be privileged.   It is intended only for the addressee(s) named above. If
you receive this e-mail in error, please do not read, copy or disseminate it in 
any manner. If you are not the intended recipient, any disclosure, copying, 
distribution or use of the contents of this information is prohibited. Please 
reply to the message immediately by informing the sender that the message was 
misdirected. After replying, please erase it from your computer system. Your 
assistance in correcting this error is appreciated.

--
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: SVC 99 035C

2020-10-17 Thread Seymour J Metz
> Manual seems pretty clear to me

To what does "For system programmer" refer? Perhaps some batch utility related 
to TSO, but TFM doesn't say, and all TSO messages that I'm familiar with come 
out on the terminal or WTP. Some terminal meessages go to SYSTSPRT in batch, 
others are lost. 

Maybe your water is like mud (-;


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Attila Fogarasi [fogar...@gmail.com]
Sent: Saturday, October 17, 2020 8:29 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SVC 99 035C

Manual seems pretty clear to me, and the TU number is specified in the
message OP was trying to get ... maybe your mud is like water :)  Per
https://www.ibm.com/support/knowledgecenter/SSLTBW_2.1.0/com.ibm.zos.v2r1.ikjm100/tso.htm
Component nameIKJ
Program producing message TSO/E
Audience and where produced For terminal user: at the terminal.

For system programmer:  SYSPRINT listing.

On Sun, Oct 18, 2020 at 10:39 AM Seymour J Metz  wrote:

>  1. That's not where they go
>  2. The manual is clear as mud
>
>
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
>
> 
> From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf
> of Attila Fogarasi [fogar...@gmail.com]
> Sent: Friday, October 16, 2020 6:18 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: SVC 99 035C
>
> DDname SYSPRINT is where IKJ messages go, not ddname SYSOUT :)  This is
> clearly documented in the z/OS TSO/E Messages manual.
>
> On Sat, Oct 17, 2020 at 9:04 AM Joseph Reichman 
> wrote:
>
> >
> >
> > HI
> >
> >
> >
> > I am dynamically allocating a new file which has 14 test units. I am
> > getting
> > a 035C meaning one them is erroneous the doc says that message
>  IKJ56231I
> > points me to the right text unit
> >
> > I am running this under TEST. I allocated SYSOUT to the terminal DA(*). I
> > didn't see the message was wondering what file to allocate to DA(*) to
> see
> > the message
> >
> >
> >
> > Thanks
> >
> >
> >
> >
> > --
> > 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

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


Re: SVC 99 035C

2020-10-17 Thread Attila Fogarasi
Manual seems pretty clear to me, and the TU number is specified in the
message OP was trying to get ... maybe your mud is like water :)  Per
https://www.ibm.com/support/knowledgecenter/SSLTBW_2.1.0/com.ibm.zos.v2r1.ikjm100/tso.htm
Component nameIKJ
Program producing message TSO/E
Audience and where produced For terminal user: at the terminal.

For system programmer:  SYSPRINT listing.

On Sun, Oct 18, 2020 at 10:39 AM Seymour J Metz  wrote:

>  1. That's not where they go
>  2. The manual is clear as mud
>
>
> --
> Shmuel (Seymour J.) Metz
> http://mason.gmu.edu/~smetz3
>
> 
> From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf
> of Attila Fogarasi [fogar...@gmail.com]
> Sent: Friday, October 16, 2020 6:18 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: SVC 99 035C
>
> DDname SYSPRINT is where IKJ messages go, not ddname SYSOUT :)  This is
> clearly documented in the z/OS TSO/E Messages manual.
>
> On Sat, Oct 17, 2020 at 9:04 AM Joseph Reichman 
> wrote:
>
> >
> >
> > HI
> >
> >
> >
> > I am dynamically allocating a new file which has 14 test units. I am
> > getting
> > a 035C meaning one them is erroneous the doc says that message
>  IKJ56231I
> > points me to the right text unit
> >
> > I am running this under TEST. I allocated SYSOUT to the terminal DA(*). I
> > didn't see the message was wondering what file to allocate to DA(*) to
> see
> > the message
> >
> >
> >
> > Thanks
> >
> >
> >
> >
> > --
> > 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: SVC 99 035C

2020-10-17 Thread Seymour J Metz
> I allocated SYSOUT to the terminal

Why?

> the doc says that message   IKJ56231I points me to the right text unit

What doc, and exactly what does it say? I suspect that it doesn't say what you 
think it does.

> what file to allocate to DA(*) to see the message

None: you have to request the message. The easy way is to request a WTP, but 
you can also process the message text in your program.




--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Joseph Reichman [reichman...@gmail.com]
Sent: Friday, October 16, 2020 6:03 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: SVC 99 035C

HI



I am dynamically allocating a new file which has 14 test units. I am getting
a 035C meaning one them is erroneous the doc says that message   IKJ56231I
points me to the right text unit

I am running this under TEST. I allocated SYSOUT to the terminal DA(*). I
didn't see the message was wondering what file to allocate to DA(*) to see
the message



Thanks




--
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: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Seymour J Metz
Well, in the old days I would have written a Q program to delete it. Whether 
STOW will still accept such a member name is anybody's guess.


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Paul Gilmartin [000433f07816-dmarc-requ...@listserv.ua.edu]
Sent: Saturday, October 17, 2020 7:04 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

On Sat, 17 Oct 2020 17:48:57 -0500, Steve Horein wrote:

>Good ole IDCAMS anyone?
>https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.idai200/dgt3i231.htm
>
How might one delete a PDS member named "*   "?

-- 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: SVC 99 035C

2020-10-17 Thread Seymour J Metz
 1. That's not where they go
 2. The manual is clear as mud


--
Shmuel (Seymour J.) Metz
http://mason.gmu.edu/~smetz3


From: IBM Mainframe Discussion List [IBM-MAIN@LISTSERV.UA.EDU] on behalf of 
Attila Fogarasi [fogar...@gmail.com]
Sent: Friday, October 16, 2020 6:18 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: SVC 99 035C

DDname SYSPRINT is where IKJ messages go, not ddname SYSOUT :)  This is
clearly documented in the z/OS TSO/E Messages manual.

On Sat, Oct 17, 2020 at 9:04 AM Joseph Reichman 
wrote:

>
>
> HI
>
>
>
> I am dynamically allocating a new file which has 14 test units. I am
> getting
> a 035C meaning one them is erroneous the doc says that message   IKJ56231I
> points me to the right text unit
>
> I am running this under TEST. I allocated SYSOUT to the terminal DA(*). I
> didn't see the message was wondering what file to allocate to DA(*) to see
> the message
>
>
>
> Thanks
>
>
>
>
> --
> 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: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Charles Mills
Back in the late sixties I was doing DOS/360 contract programming. I used a 
service bureau that would not let me store executable programs; I had to do a 
compile and go every time on an expensive system I was paying for out of my 
pocket. After running a very long compile I ran out of space in their core 
image ("load") library and the job failed. I asked for credit for the time and 
they refused. I wrote a quick program that exactly filled the remaining space 
in the library and named it ALL. They ran the appropriate utility with the 
control statement DELETC ALL with the predictable results. They were as unhappy 
with me as I was with them.

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Charles Mills
Sent: Saturday, October 17, 2020 4:13 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

I would suggest shooting the creator.

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Paul Gilmartin
Sent: Saturday, October 17, 2020 4:05 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

On Sat, 17 Oct 2020 17:48:57 -0500, Steve Horein wrote:

>Good ole IDCAMS anyone?
>https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.idai200/dgt3i231.htm
> 
How might one delete a PDS member named "*   "?

-- 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

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


Re: SVC 99 035C

2020-10-17 Thread Joseph Reichman
Thank you 



> On Oct 17, 2020, at 2:37 PM, Binyamin Dissen  
> wrote:
> 
> On Fri, 16 Oct 2020 18:03:52 -0400 Joseph Reichman 
> wrote:
> 
> :>I am dynamically allocating a new file which has 14 test units. I am getting
> :>a 035C meaning one them is erroneous the doc says that message   IKJ56231I
> :>points me to the right text unit
> 
> :>I am running this under TEST. I allocated SYSOUT to the terminal DA(*). I
> :>didn't see the message was wondering what file to allocate to DA(*) to see
> :>the message
> 
> Yawn.
> 
> As always, show your code.
> 
> --
> Binyamin Dissen 
> https://www.google.com/url?q=http://www.dissensoftware.com=gmail-imap=160356464300=AOvVaw3kMcXbuQe2cnT7yjK1STxD
> 
> Director, Dissen Software, Bar & Grill - Israel
> 
> 
> Should you use the mailblocks package and expect a response from me,
> you should preauthorize the dissensoftware.com domain.
> 
> I very rarely bother responding to challenge/response systems,
> especially those from irresponsible companies.
> 
> --
> 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: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Steve Horein
On Sat, Oct 17, 2020 at 6:04 PM Paul Gilmartin <
000433f07816-dmarc-requ...@listserv.ua.edu> wrote:

> On Sat, 17 Oct 2020 17:48:57 -0500, Steve Horein wrote:
>
> >Good ole IDCAMS anyone?
> >
> https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.idai200/dgt3i231.htm
> >
> How might one delete a PDS member named "*   "?
>
> -- gil
>
>
I guess if you get yourself into that mess, it's up to you to get yourself
out of it.

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


Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Charles Mills
I would suggest shooting the creator.

Charles


-Original Message-
From: IBM Mainframe Discussion List [mailto:IBM-MAIN@LISTSERV.UA.EDU] On Behalf 
Of Paul Gilmartin
Sent: Saturday, October 17, 2020 4:05 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

On Sat, 17 Oct 2020 17:48:57 -0500, Steve Horein wrote:

>Good ole IDCAMS anyone?
>https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.idai200/dgt3i231.htm
> 
How might one delete a PDS member named "*   "?

-- 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: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Paul Gilmartin
On Sat, 17 Oct 2020 17:48:57 -0500, Steve Horein wrote:

>Good ole IDCAMS anyone?
>https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.idai200/dgt3i231.htm
> 
How might one delete a PDS member named "*   "?

-- gil

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


Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Paul Gilmartin
On Sat, 17 Oct 2020 22:34:17 +, Chris Hoelscher wrote:

>I have employed this REXX script for years:
>
>/* REXX */  
>DSNAME = 'my PDS' 
>DSN = STRIP(DSNAME, 'BOTH', ) /* IN CASE IT'S IN QUOTES */  
>QUOTE = "'" 
>QDSN  = QUOTE||DSN||QUOTE /* FULLY QUOTED DSN */
>
>ADDRESS ISPEXEC 
>"LMINIT  DATAID( MYDATAID)  DATASET(" QDSN ") ENQ(SHRW)"
>"LMOPEN  DATAID("MYDATAID") OPTION(OUTPUT)" 
>"LMMDEL  DATAID("MYDATAID") MEMBER(*)"  
>"LMCLOSE DATAID("MYDATAID")"
>"LMFREE  DATAID("MYDATAID")"
>
> SAY DSN " IS NOW EMPTY"
> 
Does this employ STOW INITIALIZE?:

https://www.ibm.com/support/knowledgecenter/SSLTBW_2.1.0/com.ibm.zos.v2r1.idad400/stow.htm

Are there interfaces to INITIALIZE other than from assembler?

Does CBTTAPE PDSCLEAR now employ STOW INITIALIZE?

-- gil

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


Re: emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Steve Horein
Good ole IDCAMS anyone?
https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.idai200/dgt3i231.htm


On Sat, Oct 17, 2020 at 5:34 PM Chris Hoelscher 
wrote:

> I have employed this REXX script for years:
>
> /* REXX */
> DSNAME = 'my PDS'
> DSN = STRIP(DSNAME, 'BOTH', ) /* IN CASE IT'S IN QUOTES */
> QUOTE = "'"
> QDSN  = QUOTE||DSN||QUOTE /* FULLY QUOTED DSN */
>
> ADDRESS ISPEXEC
> "LMINIT  DATAID( MYDATAID)  DATASET(" QDSN ") ENQ(SHRW)"
> "LMOPEN  DATAID("MYDATAID") OPTION(OUTPUT)"
> "LMMDEL  DATAID("MYDATAID") MEMBER(*)"
> "LMCLOSE DATAID("MYDATAID")"
> "LMFREE  DATAID("MYDATAID")"
>
>  SAY DSN " IS NOW EMPTY"
>
> Chris Hoelscher
> Lead Sys DBA
> IBM Global Technical Services on assignmemt to Humana Inc.
> T 502.476.2538  or 502.407.7266
>
>
> The information transmitted is intended only for the person or entity to
> which it is addressed
> and may contain CONFIDENTIAL material.  If you receive this
> material/information in error,
> please contact the sender and delete or destroy the material/information.
>
> Humana Inc. and its subsidiaries comply with applicable Federal civil
> rights laws and
> do not discriminate on the basis of race, color, national origin,
> ancestry, age, disability, sex,
> marital status, gender, sexual orientation, gender identity, or religion.
> Humana Inc. and its subsidiaries do not
> exclude people or treat them differently because of race, color, national
> origin, ancestry, age,
> disability, sex, marital status, gender, sexual orientation, gender
> identity, or religion.
>
> English: ATTENTION: If you do not speak English, language assistance
> services, free
> of charge, are available to you. Call 1‐877‐320‐1235 (TTY: 711).
>
> Español (Spanish): ATENCIÓN: Si habla español, tiene a su disposición
> servicios
> gratuitos de asistencia lingüística. Llame al 1‐877‐320‐1235 (TTY: 711).
>
> 繁體中文(Chinese):注意:如果您使用繁體中文,您可以免費獲得語言援助
> 服務。請致電 1‐877‐320‐1235 (TTY: 711)。
>
> Kreyòl Ayisyen (Haitian Creole): ATANSION: Si w pale Kreyòl Ayisyen, gen
> sèvis èd
> pou lang ki disponib gratis pou ou. Rele 1‐877‐320‐1235 (TTY: 711).
>
> Polski (Polish): UWAGA: Jeżeli mówisz po polsku, możesz skorzystać z
> bezpłatnej
> pomocy językowej. Zadzwoń pod numer 1‐877‐320‐1235 (TTY: 711).
>
> 한국어 (Korean): 주의: 한국어를 사용하시는 경우, 언어 지원 서비스를 무료로
> 이용하실 수 있습니다. 1‐877‐320‐1235 (TTY: 711)번으로 전화해 주십시오.
>
>
> --
> 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


emptying a PDS: was RE: [IBM-MAIN] getting XCFAS down

2020-10-17 Thread Chris Hoelscher
I have employed this REXX script for years:

/* REXX */  
DSNAME = 'my PDS' 
DSN = STRIP(DSNAME, 'BOTH', ) /* IN CASE IT'S IN QUOTES */  
QUOTE = "'" 
QDSN  = QUOTE||DSN||QUOTE /* FULLY QUOTED DSN */

ADDRESS ISPEXEC 
"LMINIT  DATAID( MYDATAID)  DATASET(" QDSN ") ENQ(SHRW)"
"LMOPEN  DATAID("MYDATAID") OPTION(OUTPUT)" 
"LMMDEL  DATAID("MYDATAID") MEMBER(*)"  
"LMCLOSE DATAID("MYDATAID")"
"LMFREE  DATAID("MYDATAID")"

 SAY DSN " IS NOW EMPTY"

Chris Hoelscher
Lead Sys DBA 
IBM Global Technical Services on assignmemt to Humana Inc.
T 502.476.2538  or 502.407.7266


The information transmitted is intended only for the person or entity to which 
it is addressed
and may contain CONFIDENTIAL material.  If you receive this 
material/information in error,
please contact the sender and delete or destroy the material/information.

Humana Inc. and its subsidiaries comply with applicable Federal civil rights 
laws and
do not discriminate on the basis of race, color, national origin, ancestry, 
age, disability, sex,
marital status, gender, sexual orientation, gender identity, or religion. 
Humana Inc. and its subsidiaries do not
exclude people or treat them differently because of race, color, national 
origin, ancestry, age,
disability, sex, marital status, gender, sexual orientation, gender identity, 
or religion.

English: ATTENTION: If you do not speak English, language assistance services, 
free
of charge, are available to you. Call 1‐877‐320‐1235 (TTY: 711).

Español (Spanish): ATENCIÓN: Si habla español, tiene a su disposición servicios
gratuitos de asistencia lingüística. Llame al 1‐877‐320‐1235 (TTY: 711).

繁體中文(Chinese):注意:如果您使用繁體中文,您可以免費獲得語言援助
服務。請致電 1‐877‐320‐1235 (TTY: 711)。

Kreyòl Ayisyen (Haitian Creole): ATANSION: Si w pale Kreyòl Ayisyen, gen sèvis 
èd
pou lang ki disponib gratis pou ou. Rele 1‐877‐320‐1235 (TTY: 711).

Polski (Polish): UWAGA: Jeżeli mówisz po polsku, możesz skorzystać z bezpłatnej
pomocy językowej. Zadzwoń pod numer 1‐877‐320‐1235 (TTY: 711).

한국어 (Korean): 주의: 한국어를 사용하시는 경우, 언어 지원 서비스를 무료로
이용하실 수 있습니다. 1‐877‐320‐1235 (TTY: 711)번으로 전화해 주십시오.


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


Re: getting XCFAS down

2020-10-17 Thread Lizette Koehler
Is SDSNLINK in LPA or LINKLST or Both?

If LNKLST, you can do the following, Depending on your shops set up

If you have not installed PDSCLEAN from CBTTAPE.ORG, see if you can do that.  
It Empties a PDS or PDS/e dataset so there might be room for everything after 
you do this

Next, if you do not have PDSCLEAN from CBTTAPE.ORG - then you may have to 
manually delete members and compress the dataset.

Next if all else fails

  Depending on how many members are in your dataset and whether the updated 
modules can fit in the existing dataset.
1a) Allocate a new SDSNLINK (call it SDSNLINK.BKUP)
1b) MOVE all members from SDSNLINK to SDSNLINK.BKUP
1c) Compress SDSNLINK
1d) See if the new code will fit in the existing dataset without expanding it
1e) If it does, do an LLA UPDATE or SETPROG LPA command to refresh 
2) try starting DB2.


If the dataset is still too small.  Create a new SDSNLINK dataset (call it 
SDSNLINK.NEW)
Copy all members from into it
REBUILD the LINKLST with the new SDSNLINK.NEW at the same time you may want 
this to delete SDSNLINK 

Not sure what to do about LPALIB. There might be a process in SETPROG LPA to 
add the new SDSNLINK.NEW modules in and replace all current Modules.

Try starting DB2



This is all best worked in a TEST environment where you can IPL in case of 
challenges.  You need to verify the process that will work for this situation 
you have



Note:  The limited size might be due to trying to replace what is currently in 
the dataset with new modules.  The PDSCLEAN or PDS commands from CBTTAPE.org 
will allow you to easily reset the Directory so that it is empty of all 
members.  There might be sufficient room to bring in the new modules.

This is may or may not work.  But it is the safest process you have rather than 
IPL

Lizette


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Bill Giannelli
Sent: Saturday, October 17, 2020 1:49 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: getting XCFAS down

Yes, I am aware of the DB2 ERLY REFRESH command. but that authority has been 
taken away thru a third party too MZCA (long story)…..it will take time to get 
it back. In any case, due to limited size I need to reallocate my old SDSNLINK 
datasets.
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: getting XCFAS down

2020-10-17 Thread Bill Giannelli
Yes, I am aware of the DB2 ERLY REFRESH command. but that authority has been 
taken away thru a third party too MZCA (long story)…..it will take time to get 
it back. In any case, due to limited size I need to reallocate my old SDSNLINK 
datasets.
Bill

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


Re: getting XCFAS down

2020-10-17 Thread Lizette Koehler
The Db2 command -REFRESH DB2,EARLY reloads the ERLY code modules that were 
loaded at IPL time, and rebuilds the ERLY control block. Executing the -REFRESH 
DB2,EARLY command is an alternative to doing an IPL of z/OS® for activating 
maintenance to early (ERLY) code after you apply that maintenance to the 
prefix.SDSNLINK data set.



-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Lizette Koehler
Sent: Saturday, October 17, 2020 12:38 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: getting XCFAS down

You should ask this on the DB2 List

There is a command in DB2 to refresh ERLY code once you have copied it to your 
DB2 library.

Depends on what Level of DB2 you are running.

You do not need to shutdown any z/OS Task.

Lizette


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Bill Giannelli
Sent: Saturday, October 17, 2020 3:05 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: getting XCFAS down

I have been having an issue getting DB2 ERLY code dataset (SDSNLINK) moved in. 
The PARMLIB has been updated for me and I only need to rename my SDSNLINK 
datasets to match PARMLIB. But I keep running into XCFAS "using" the dataset. I 
am not able to "bring down" XCFAS. How do I tell what LPAR is accessing thru 
XCFAS and how do I "bring down" XCFAS?
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: getting XCFAS down

2020-10-17 Thread Lizette Koehler
You should ask this on the DB2 List

There is a command in DB2 to refresh ERLY code once you have copied it to your 
DB2 library.

Depends on what Level of DB2 you are running.

You do not need to shutdown any z/OS Task.

Lizette


-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Bill Giannelli
Sent: Saturday, October 17, 2020 3:05 AM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: getting XCFAS down

I have been having an issue getting DB2 ERLY code dataset (SDSNLINK) moved in. 
The PARMLIB has been updated for me and I only need to rename my SDSNLINK 
datasets to match PARMLIB. But I keep running into XCFAS "using" the dataset. I 
am not able to "bring down" XCFAS. How do I tell what LPAR is accessing thru 
XCFAS and how do I "bring down" XCFAS?
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: SVC 99 035C

2020-10-17 Thread Binyamin Dissen
On Fri, 16 Oct 2020 18:03:52 -0400 Joseph Reichman 
wrote:

:>I am dynamically allocating a new file which has 14 test units. I am getting
:>a 035C meaning one them is erroneous the doc says that message   IKJ56231I
:>points me to the right text unit

:>I am running this under TEST. I allocated SYSOUT to the terminal DA(*). I
:>didn't see the message was wondering what file to allocate to DA(*) to see
:>the message

Yawn.

As always, show your code.

--
Binyamin Dissen 
http://www.dissensoftware.com

Director, Dissen Software, Bar & Grill - Israel


Should you use the mailblocks package and expect a response from me,
you should preauthorize the dissensoftware.com domain.

I very rarely bother responding to challenge/response systems,
especially those from irresponsible companies.

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


Re: Shopz Question

2020-10-17 Thread Marna WALLE
Robert,
I might be a little confused as to what you were looking for...  I just logged 
onto Shopz, and I can order CICS TS V5.6 [5655-Y04] on a ServerPac - AND I 
could even get that ServerPac packaged for a z/OSMF installation method should 
I wish.

Is this only an entitlement question, or it is a CBPDO vs ServerPac question?

I'd like to encourage all folks, who are ordering any CICS or CICS program 
product, to order it via a z/OSMF-packaged ServerPac.

Thanks,
Marna WALLE
z/OS System Installation
IBM Poughkeepsie

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


Re: Batch SFTP without client keys or USS files?

2020-10-17 Thread Wendell Lovewell
I'm sorry Rajesh.  I meant to say that the job will run on other z/OS systems.  
I can't require CO:Z to be present.

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


Re: Batch SFTP without client keys or USS files?

2020-10-17 Thread Srivastava, Rajesh K
I think "COZBATCH" is part of free COZ SFTP product download. 

Regards,

Rajesh

-Original Message- 
From: IBM Mainframe Discussion List  On Behalf Of 
Wendell Lovewell
Sent: Friday, October 16, 2020 8:15 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Batch SFTP without client keys or USS files?

Thank you Rajesh, but the job will be running on z/OS systems.  I cannot 
require any additional software like COZBATCH to be installed.

Best Regards,
Wendell

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

The information contained in this e-mail, and any attachment, is confidential 
and is intended solely for the use of the intended recipient. Access, copying 
or re-use of the e-mail or any attachment, or any information contained 
therein, by any other person is not authorized. If you are not the intended 
recipient please return the e-mail to the sender and delete it from your 
computer. Although we attempt to sweep e-mail and attachments for viruses, we 
do not guarantee that either are virus-free and accept no liability for any 
damage sustained as a result of viruses. 

Please refer to https://disclaimer.bnymellon.com/eu.htm for certain disclosures 
relating to European legal entities. We take our data protection and privacy 
responsibilities seriously and our privacy notice explains how we collect, use 
and share personal information in the course of our business activities. It can 
be accessed at the privacy section of  www.bnymellon.com.


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


Re: Batch SFTP without client keys or USS files?

2020-10-17 Thread Wendell Lovewell
Thanks for asking, but no special characters.

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


Re: getting XCFAS down

2020-10-17 Thread Michael Babcock
And I’m not a DB2 guy but doesn’t DB2 ERLY code reside in LPA?  In which
case the suggestions won’t work.

On Sat, Oct 17, 2020 at 7:42 AM Michael Babcock 
wrote:

> No it won’t.  SETPROG LNKLST,UNALLOCATE stops the enqueue.   But I hope
> you are creating a new linklist set and removing the datasets you need,
> activate that new set, UPDATE the linklist set, perform your work, then add
> it back in using another linklist set.
>
> On Sat, Oct 17, 2020 at 7:16 AM Bill Giannelli 
> wrote:
>
>> Thank you for the help and information!
>> So "Stop VLF" will "bring down" XCFAS?
>> thanks
>> Bill
>>
>> --
>> For IBM-MAIN subscribe / signoff / archive access instructions,
>> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>>
> --
> Michael Babcock
> OneMain Financial
> z/OS Systems Programmer, Lead
>
-- 
Michael Babcock
OneMain Financial
z/OS Systems Programmer, Lead

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


Re: getting XCFAS down

2020-10-17 Thread Michael Babcock
No it won’t.  SETPROG LNKLST,UNALLOCATE stops the enqueue.   But I hope you
are creating a new linklist set and removing the datasets you need,
activate that new set, UPDATE the linklist set, perform your work, then add
it back in using another linklist set.

On Sat, Oct 17, 2020 at 7:16 AM Bill Giannelli 
wrote:

> Thank you for the help and information!
> So "Stop VLF" will "bring down" XCFAS?
> thanks
> Bill
>
> --
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN
>
-- 
Michael Babcock
OneMain Financial
z/OS Systems Programmer, Lead

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


Re: getting XCFAS down

2020-10-17 Thread Mark Jacobs
No, the SETPROG LNKLST,UNALLOCATE command removes the enqueue.

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 Saturday, October 17th, 2020 at 8:15 AM, Bill Giannelli 
 wrote:

> Thank you for the help and information!
>
> So "Stop VLF" will "bring down" XCFAS?
>
> 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: getting XCFAS down

2020-10-17 Thread Bill Giannelli
Thank you for the help and information!
So "Stop VLF" will "bring down" XCFAS?
thanks
Bill

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


Re: getting XCFAS down

2020-10-17 Thread kekronbekron
Stop LLA & VLF if they're active.
SETPROG LNKLST UNALLOCATE
--work--
SETPROG LNKLST ALLOCATE
Start LLA & VLF

In general, this is a good reference - 
https://www.ibm.com/support/pages/using-dynamic-lnklst-facility-safely-and-properly

- KB

‐‐‐ Original Message ‐‐‐
On Saturday, October 17, 2020 3:35 PM, Bill Giannelli  
wrote:

> I have been having an issue getting DB2 ERLY code dataset (SDSNLINK) moved 
> in. The PARMLIB has been updated for me and I only need to rename my SDSNLINK 
> datasets to match PARMLIB. But I keep running into XCFAS "using" the dataset. 
> I am not able to "bring down" XCFAS. How do I tell what LPAR is accessing 
> thru XCFAS and how do I "bring down" XCFAS?
> 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


getting XCFAS down

2020-10-17 Thread Bill Giannelli
I have been having an issue getting DB2 ERLY code dataset (SDSNLINK) moved in. 
The PARMLIB has been updated for me and I only need to rename my SDSNLINK 
datasets to match PARMLIB. But I keep running into XCFAS "using" the dataset. I 
am not able to "bring down" XCFAS. How do I tell what LPAR is accessing thru 
XCFAS and how do I "bring down" XCFAS?
thanks
Bill

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