Re: Syncsort to DFSORT - my time has come.

2020-10-29 Thread Gibney, Dave
Apparently, the specification of format (or at least CH) on Syncsort JOINKEYS 
is optional. 
I don't have it specified in another job that has been working for some time.

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Sri h Kolusu
> Sent: Thursday, October 29, 2020 8:58 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> >>For compatibility and migration purposes, is there a way for DFSORT to
> accept this specification?
> 
> Unfortunately NO.  The other product had to introduce the formats for
> compensating the rich functionality of JNF1CNTL and JNF2CNTL in DFSORT.
> DFSORT gives you the entire INREC formatting with JNF1 and JNF2.
> 
> >>I could check and see if Syncsort actually required this specification or
> if I did it by habit.
> 
> If the key formats are of the same format (like in this case both key
> fields are character data) , you absolutely don't require the format.
> However if your key has ZD and PD combination then you can use JNF1/JNF2
> to
> normalize one of the key to match the other.
> 
> for example as 4 byte Packed decimal field is compared to 9 byte zoned
> decimal number
> 
> JOINKEYS FILE=F1,FIELDS=(1,4,PD,A)
> JOINKEYS FILE=F2,FIELDS=(6,9,ZD,A)
> 
> You can change this to
> 
> JOINKEYS FILE=F1,FIELDS=(81,9,A)
> JOINKEYS FILE=F2,FIELDS=(6,9,A)
> 
> //JNF1CNTL  DD *
>   INREC OVERLAY=(81:1,4,PD,ZD,LENGTH=9)  $ convert 4 byte PD to 9 byte ZD
> format
> /*
> 
> 
> Thanks,
> Kolusu
> DFSORT Development
> IBM Corporation
> 
> --
> 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: Syncsort to DFSORT - my time has come.

2020-10-29 Thread Sri h Kolusu
>>For compatibility and migration purposes, is there a way for DFSORT to
accept this specification?

Unfortunately NO.  The other product had to introduce the formats for
compensating the rich functionality of JNF1CNTL and JNF2CNTL in DFSORT.
DFSORT gives you the entire INREC formatting with JNF1 and JNF2.

>>I could check and see if Syncsort actually required this specification or
if I did it by habit.

If the key formats are of the same format (like in this case both key
fields are character data) , you absolutely don't require the format.
However if your key has ZD and PD combination then you can use JNF1/JNF2 to
normalize one of the key to match the other.

for example as 4 byte Packed decimal field is compared to 9 byte zoned
decimal number

JOINKEYS FILE=F1,FIELDS=(1,4,PD,A)
JOINKEYS FILE=F2,FIELDS=(6,9,ZD,A)

You can change this to

JOINKEYS FILE=F1,FIELDS=(81,9,A)
JOINKEYS FILE=F2,FIELDS=(6,9,A)

//JNF1CNTL  DD *
  INREC OVERLAY=(81:1,4,PD,ZD,LENGTH=9)  $ convert 4 byte PD to 9 byte ZD
format
/*


Thanks,
Kolusu
DFSORT Development
IBM Corporation

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


Re: Syncsort to DFSORT - my time has come.

2020-10-29 Thread Gibney, Dave
Thank you. Mos of our "fancy" sort stuff is mine, so I can make these changes.
But, and this is just asking, not really expecting. For compatibility and 
migration purposes, is there a way for DFSORT to accept this specification?

I have 4 LPARs. This job  runs in 3 of them. 2 still run Syncsort. My migration 
will take a little more time. 

I could check and see if Syncsort actually required this specification or if I 
did it by habit.

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Sri h Kolusu
> Sent: Thursday, October 29, 2020 3:05 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> Dave,
> 
> DFSORT Joinkeys does not require the FORMAT of the key field as a binary
> match is done implicitly.
> 
> So change your control cards to the following(Just removed the CH on the
> Fields statement)
> 
> JOINKEYS FILE=F1,FIELDS=(1,9,A),TYPE=F
> JOINKEYS FILE=F2,FIELDS=(6,9,A),
>  INCLUDE=(6,9,CH,EQ,C'MCR02143I'),TYPE=V
> 
> 
> Further if you have any questions please let me know
> 
> 
> Thanks,
>  Kolusu
> DFSORT Development
> IBM Corporation
> 
> 
> 
> --
> 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: Syncsort to DFSORT - my time has come.

2020-10-29 Thread Sri h Kolusu
Dave,

DFSORT Joinkeys does not require the FORMAT of the key field as a binary
match is done implicitly.

So change your control cards to the following(Just removed the CH on the
Fields statement)

JOINKEYS FILE=F1,FIELDS=(1,9,A),TYPE=F
JOINKEYS FILE=F2,FIELDS=(6,9,A),
 INCLUDE=(6,9,CH,EQ,C'MCR02143I'),TYPE=V


Further if you have any questions please let me know


Thanks,
 Kolusu
DFSORT Development
IBM Corporation



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


Re: Syncsort to DFSORT - my time has come.

2020-10-28 Thread Gibney, Dave
Well, I'll look at he manuals tomorrow. Fortunately, this is still the sandbox. 
It worked fine with the Syncsort
ICE067I 0 INVALID PARAMETER IN JCL EXEC PARM OR INVOKED PARM LIST  
JOIN UNPAIRED  
   JOINKEYS FILE=F1,FIELDS=(1,9,CH,A),TYPE=F   
$  
ICE400A 0 INVALID JOINKEYS, JOIN OR REFORMAT STATEMENT OPERAND 
   JOINKEYS FILE=F2,FIELDS=(6,9,CH,A), 
$  
ICE400A 0 INVALID JOINKEYS, JOIN OR REFORMAT STATEMENT OPERAND 
   INCLUDE=(6,9,CH,EQ,C'MCR02143I'),TYPE=V 
  $
ICE007A 1 SYNTAX ERROR 
ICE751I 0 C5-I58435 C6-BASE   C7-I58435 C8-I58435 E7-I58377 
ICE052I 3 END OF DFSORT 

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Gibney, Dave
> Sent: Tuesday, October 27, 2020 10:17 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Syncsort to DFSORT - my time has come.
> 
>A fairly quick question. Are there sample ICEPRMxx members provided by
> IBM for tailoring DFSORT? I don't find any in SICESAMP.
> Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK, SORTLIB
> ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS shows
> DFSORT as resident sort program. All seems well. I don't keep this
> concatenation, it was just easier for fall back considerations.
> 
> Dave Gibney
> Information Technology Services
> Washington State University
> 
> 
> --
> 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: Syncsort to DFSORT - my time has come.

2020-10-28 Thread Allan Staller
Classification: Internal

Last time I looked, WPS was noticeably less expensive than SAS and fully 
embraced by Barry.

-Original Message-
From: IBM Mainframe Discussion List  On Behalf Of 
Gibney, Dave
Sent: Wednesday, October 28, 2020 2:43 PM
To: IBM-MAIN@LISTSERV.UA.EDU
Subject: Re: Syncsort to DFSORT - my time has come.

[CAUTION: This Email is from outside the Organization. Unless you trust the 
sender, Don’t click links or open attachments as it may be a Phishing email, 
which can steal your Information and compromise your Computer.]

Barry pointed this out to me. And I did know this. My reply to him is below. 
Maybe I should look at a trial version of that SAS equivalent out of the UK.

  Thanks Barry,
   Except I do have a fair sized investment in my current batch MXG jobs. And, 
as I've mentioned before, we will be shutdown within the year. For me, the path 
to ASCII is not likely.

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Edward Finnell
> Sent: Wednesday, October 28, 2020 12:40 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
>
> SAS and MXG have PC versions.
>
> So, I lose MXG and reasonable ability to process SMF anyway.
>
>
>
>
> -Original Message-
> From: Gibney, Dave 
> To: IBM-MAIN@LISTSERV.UA.EDU
> Sent: Wed, Oct 28, 2020 11:47 am
> Subject: Re: Syncsort to DFSORT - my time has come.
>
> If we had longer to exist, I might. But, we haven't been collecting
> Syncsort SMF, so until I see the need...
> And my SAS license expires soon also. So, I lose MXG and reasonable
> ability to process SMF anyway.
>
> > -Original Message-
> > From: IBM Mainframe Discussion List  On
> > Behalf Of Martin Packer
> > Sent: Wednesday, October 28, 2020 1:32 AM
> > To: IBM-MAIN@LISTSERV.UA.EDU
> > Subject: Re: Syncsort to DFSORT - my time has come.
> >
> >
> > FWIW I would go with SMF=FULL - unless you have an exceptionally
> > large number of sorts - or tight SMF space restrictions.
> >
> > There’s gold in them there records. :-)
> >
> > Cheers, Martin
> >
> > Sent from my iPad
> >
> > > On 27 Oct 2020, at 21:13, Frank Swarbrick
> 
> > wrote:
> > >
> > > Here is our ICEPRM00, if you are interested.
> > >
> > > JCL
> > >  DYNALOC=(SYSDA,12)
> > >  DYNAUTO=YES
> > >  MSGDDN=SYSOUT
> > >  PARMDDN=DFSPARM
> > >  SMF=NO
> > > INV
> > >  DYNALOC=(SYSDA,12)
> > >  DYNAUTO=IGNWKDD
> > >  ERET=ABEND
> > >  MSGDDN=SORTMSG
> > >  PARMDDN=SORTPARM
> > >  SMF=SHORT
> > > TSO
> > >  SMF=SHORT
> > > TSOINV
> > >  SMF=SHORT
> > > TD1
> > >  SMF=SHORT
> > > TD2
> > >  SMF=SHORT
> > > TD3
> > >  SMF=SHORT
> > > TD4
> > >  SMF=SHORT
> > >
> > > 
> > > From: IBM Mainframe Discussion List 
> on
> > behalf
> > of R.S. 
> > > Sent: Tuesday, October 27, 2020 11:26 AM
> > > To: IBM-MAIN@LISTSERV.UA.EDU 
> > > Subject: Re: Syncsort to DFSORT - my time has come.
> > >
> > > W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
> > >>A fairly quick question. Are there sample ICEPRMxx members
> provided
> > by IBM for tailoring DFSORT? I don't find any in SICESAMP.
> > >> Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA,
> > >> SICELINK,
> > SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS
> > shows DFSORT as resident sort program. All seems well. I don't keep
> > this concatenation, it was just easier for fall back considerations.
> > >
> > > If you want some sample I can send it.
> > > However there is no black magic there.
> > > IMHO it is fundamental to define your needs, because the member is
> > > for defaults which can be easily overtyped by parameters in the job.
> > >
> > > Here you are:
> > >
> > >
> >
> **
> > *
> > > ** History of changes:
> > > ** 05-10-2019 R.SKORUPKA first customization
> > > ** dd-mm- user description...
> > > **
> > >
> >
> **
> > **
> > > *
> > > * JCL (ICEAM1)
> > > JCL
> > > DYNALOC=(3390,10)
> > > *
> > > * INV (ICEAM2)
> > > INV
> > > DYNALOC=(3390,10)
> > >
> > >
> > &

Re: Syncsort to DFSORT - my time has come.

2020-10-28 Thread Gibney, Dave
Barry pointed this out to me. And I did know this. My reply to him is below. 
Maybe I should look at a trial version of that SAS equivalent out of the UK.

  Thanks Barry,
   Except I do have a fair sized investment in my current batch MXG jobs. And, 
as I've mentioned before, we will be shutdown within the year. For me, the path 
to ASCII is not likely.

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Edward Finnell
> Sent: Wednesday, October 28, 2020 12:40 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> SAS and MXG have PC versions.
> 
> So, I lose MXG and reasonable ability to process SMF anyway.
> 
> 
> 
> 
> -Original Message-
> From: Gibney, Dave 
> To: IBM-MAIN@LISTSERV.UA.EDU
> Sent: Wed, Oct 28, 2020 11:47 am
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> If we had longer to exist, I might. But, we haven't been collecting Syncsort
> SMF, so until I see the need...
> And my SAS license expires soon also. So, I lose MXG and reasonable ability
> to process SMF anyway.
> 
> > -Original Message-
> > From: IBM Mainframe Discussion List  On
> > Behalf Of Martin Packer
> > Sent: Wednesday, October 28, 2020 1:32 AM
> > To: IBM-MAIN@LISTSERV.UA.EDU
> > Subject: Re: Syncsort to DFSORT - my time has come.
> >
> >
> > FWIW I would go with SMF=FULL - unless you have an exceptionally large
> > number of sorts - or tight SMF space restrictions.
> >
> > There’s gold in them there records. :-)
> >
> > Cheers, Martin
> >
> > Sent from my iPad
> >
> > > On 27 Oct 2020, at 21:13, Frank Swarbrick
> 
> > wrote:
> > >
> > > Here is our ICEPRM00, if you are interested.
> > >
> > > JCL
> > >  DYNALOC=(SYSDA,12)
> > >  DYNAUTO=YES
> > >  MSGDDN=SYSOUT
> > >  PARMDDN=DFSPARM
> > >  SMF=NO
> > > INV
> > >  DYNALOC=(SYSDA,12)
> > >  DYNAUTO=IGNWKDD
> > >  ERET=ABEND
> > >  MSGDDN=SORTMSG
> > >  PARMDDN=SORTPARM
> > >  SMF=SHORT
> > > TSO
> > >  SMF=SHORT
> > > TSOINV
> > >  SMF=SHORT
> > > TD1
> > >  SMF=SHORT
> > > TD2
> > >  SMF=SHORT
> > > TD3
> > >  SMF=SHORT
> > > TD4
> > >  SMF=SHORT
> > >
> > > 
> > > From: IBM Mainframe Discussion List 
> on
> > behalf
> > of R.S. 
> > > Sent: Tuesday, October 27, 2020 11:26 AM
> > > To: IBM-MAIN@LISTSERV.UA.EDU 
> > > Subject: Re: Syncsort to DFSORT - my time has come.
> > >
> > > W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
> > >>    A fairly quick question. Are there sample ICEPRMxx members
> provided
> > by IBM for tailoring DFSORT? I don't find any in SICESAMP.
> > >> Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK,
> > SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS
> > shows
> > DFSORT as resident sort program. All seems well. I don't keep this
> > concatenation, it was just easier for fall back considerations.
> > >
> > > If you want some sample I can send it.
> > > However there is no black magic there.
> > > IMHO it is fundamental to define your needs, because the member is for
> > > defaults which can be easily overtyped by parameters in the job.
> > >
> > > Here you are:
> > >
> > >
> >
> **
> > *
> > > ** History of changes:
> > > ** 05-10-2019 R.SKORUPKA first customization
> > > ** dd-mm- user description...
> > > **
> > >
> >
> **
> > **
> > > *
> > > * JCL (ICEAM1)
> > > JCL
> > > DYNALOC=(3390,10)
> > > *
> > > * INV (ICEAM2)
> > > INV
> > > DYNALOC=(3390,10)
> > >
> > >
> > >
> > > --
> > > Radoslaw Skorupka
> > > Lodz, Poland
> > >
> > >
> > >
> > >
> > >
> > >
> >
> ==
> > 
> > >
> > > Jeśli nie jesteś adresatem tej wiadomości:
> > >
> > > - powiadom nas o tym w mailu zwrotnym (dziękujemy!),
> > > - usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub
> > zapisałeś na dysku).
> > > Wiadomość

Re: Syncsort to DFSORT - my time has come.

2020-10-28 Thread Edward Finnell
SAS and MXG have PC versions.

So, I lose MXG and reasonable ability to process SMF anyway.




-Original Message-
From: Gibney, Dave 
To: IBM-MAIN@LISTSERV.UA.EDU
Sent: Wed, Oct 28, 2020 11:47 am
Subject: Re: Syncsort to DFSORT - my time has come.

If we had longer to exist, I might. But, we haven't been collecting Syncsort 
SMF, so until I see the need...
And my SAS license expires soon also. So, I lose MXG and reasonable ability to 
process SMF anyway.

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Martin Packer
> Sent: Wednesday, October 28, 2020 1:32 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> 
> FWIW I would go with SMF=FULL - unless you have an exceptionally large
> number of sorts - or tight SMF space restrictions.
> 
> There’s gold in them there records. :-)
> 
> Cheers, Martin
> 
> Sent from my iPad
> 
> > On 27 Oct 2020, at 21:13, Frank Swarbrick 
> wrote:
> >
> > Here is our ICEPRM00, if you are interested.
> >
> > JCL
> >  DYNALOC=(SYSDA,12)
> >  DYNAUTO=YES
> >  MSGDDN=SYSOUT
> >  PARMDDN=DFSPARM
> >  SMF=NO
> > INV
> >  DYNALOC=(SYSDA,12)
> >  DYNAUTO=IGNWKDD
> >  ERET=ABEND
> >  MSGDDN=SORTMSG
> >  PARMDDN=SORTPARM
> >  SMF=SHORT
> > TSO
> >  SMF=SHORT
> > TSOINV
> >  SMF=SHORT
> > TD1
> >  SMF=SHORT
> > TD2
> >  SMF=SHORT
> > TD3
> >  SMF=SHORT
> > TD4
> >  SMF=SHORT
> >
> > 
> > From: IBM Mainframe Discussion List  on
> behalf
> of R.S. 
> > Sent: Tuesday, October 27, 2020 11:26 AM
> > To: IBM-MAIN@LISTSERV.UA.EDU 
> > Subject: Re: Syncsort to DFSORT - my time has come.
> >
> > W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
> >>    A fairly quick question. Are there sample ICEPRMxx members provided
> by IBM for tailoring DFSORT? I don't find any in SICESAMP.
> >> Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK,
> SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS
> shows
> DFSORT as resident sort program. All seems well. I don't keep this
> concatenation, it was just easier for fall back considerations.
> >
> > If you want some sample I can send it.
> > However there is no black magic there.
> > IMHO it is fundamental to define your needs, because the member is for
> > defaults which can be easily overtyped by parameters in the job.
> >
> > Here you are:
> >
> >
> **
> *
> > ** History of changes:
> > ** 05-10-2019 R.SKORUPKA first customization
> > ** dd-mm- user description...
> > **
> >
> **
> **
> > *
> > * JCL (ICEAM1)
> > JCL
> > DYNALOC=(3390,10)
> > *
> > * INV (ICEAM2)
> > INV
> > DYNALOC=(3390,10)
> >
> >
> >
> > --
> > Radoslaw Skorupka
> > Lodz, Poland
> >
> >
> >
> >
> >
> >
> ==
> 
> >
> > Jeśli nie jesteś adresatem tej wiadomości:
> >
> > - powiadom nas o tym w mailu zwrotnym (dziękujemy!),
> > - usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub
> zapisałeś na dysku).
> > Wiadomość ta może zawierać chronione prawem informacje, które może
> wykorzystać tylko adresat.Przypominamy, że każdy, kto rozpowszechnia
> (kopiuje, rozprowadza) tę wiadomość lub podejmuje podobne działania,
> narusza prawo i może podlegać karze.
> >
> > mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> Y0HMszNaDT!7Llp4MvFE23h4R-
> paQT1wSjFbHq0hcGJpgRbD2kwqWnyoGx60KsZ-exJaDyN3g$ , e-mail:
> kont...@mbank.pl. Sąd Rejonowy dla m. st.
> Warszawy XII Wydział Gospodarczy Krajowego Rejestru Sądowego, KRS
> 025237, NIP: 526-021-50-88. Kapitał zakładowy (opłacony w całości)
> według stanu na 01.01.2020 r. wynosi 169.401.468 złotych.
> >
> > If you are not the addressee of this message:
> >
> > - let us know by replying to this e-mail (thank you!),
> > - delete this message permanently (including all the copies which you
> have printed out or saved).
> > This message may contain legally protected information, which may be
> used
> exclusively by the addressee.Please be reminded that anyone who
> disseminates (copies, distributes) this message or takes any similar
> action, violates the law and 

Re: Syncsort to DFSORT - my time has come.

2020-10-28 Thread Gibney, Dave
If we had longer to exist, I might. But, we haven't been collecting Syncsort 
SMF, so until I see the need...
And my SAS license expires soon also. So, I lose MXG and reasonable ability to 
process SMF anyway.

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Martin Packer
> Sent: Wednesday, October 28, 2020 1:32 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> 
> FWIW I would go with SMF=FULL - unless you have an exceptionally large
> number of sorts - or tight SMF space restrictions.
> 
> There’s gold in them there records. :-)
> 
> Cheers, Martin
> 
> Sent from my iPad
> 
> > On 27 Oct 2020, at 21:13, Frank Swarbrick 
> wrote:
> >
> > Here is our ICEPRM00, if you are interested.
> >
> > JCL
> >   DYNALOC=(SYSDA,12)
> >   DYNAUTO=YES
> >   MSGDDN=SYSOUT
> >   PARMDDN=DFSPARM
> >   SMF=NO
> > INV
> >   DYNALOC=(SYSDA,12)
> >   DYNAUTO=IGNWKDD
> >   ERET=ABEND
> >   MSGDDN=SORTMSG
> >   PARMDDN=SORTPARM
> >   SMF=SHORT
> > TSO
> >   SMF=SHORT
> > TSOINV
> >   SMF=SHORT
> > TD1
> >   SMF=SHORT
> > TD2
> >   SMF=SHORT
> > TD3
> >   SMF=SHORT
> > TD4
> >   SMF=SHORT
> >
> > 
> > From: IBM Mainframe Discussion List  on
> behalf
> of R.S. 
> > Sent: Tuesday, October 27, 2020 11:26 AM
> > To: IBM-MAIN@LISTSERV.UA.EDU 
> > Subject: Re: Syncsort to DFSORT - my time has come.
> >
> > W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
> >>A fairly quick question. Are there sample ICEPRMxx members provided
> by IBM for tailoring DFSORT? I don't find any in SICESAMP.
> >> Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK,
> SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS
> shows
> DFSORT as resident sort program. All seems well. I don't keep this
> concatenation, it was just easier for fall back considerations.
> >
> > If you want some sample I can send it.
> > However there is no black magic there.
> > IMHO it is fundamental to define your needs, because the member is for
> > defaults which can be easily overtyped by parameters in the job.
> >
> > Here you are:
> >
> >
> **
> *
> > ** History of changes:
> > ** 05-10-2019 R.SKORUPKA first customization
> > ** dd-mm- user description...
> > **
> >
> **
> **
> > *
> > * JCL (ICEAM1)
> > JCL
> > DYNALOC=(3390,10)
> > *
> > * INV (ICEAM2)
> > INV
> > DYNALOC=(3390,10)
> >
> >
> >
> > --
> > Radoslaw Skorupka
> > Lodz, Poland
> >
> >
> >
> >
> >
> >
> ==
> 
> >
> > Jeśli nie jesteś adresatem tej wiadomości:
> >
> > - powiadom nas o tym w mailu zwrotnym (dziękujemy!),
> > - usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub
> zapisałeś na dysku).
> > Wiadomość ta może zawierać chronione prawem informacje, które może
> wykorzystać tylko adresat.Przypominamy, że każdy, kto rozpowszechnia
> (kopiuje, rozprowadza) tę wiadomość lub podejmuje podobne działania,
> narusza prawo i może podlegać karze.
> >
> > mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> Y0HMszNaDT!7Llp4MvFE23h4R-
> paQT1wSjFbHq0hcGJpgRbD2kwqWnyoGx60KsZ-exJaDyN3g$ , e-mail:
> kont...@mbank.pl. Sąd Rejonowy dla m. st.
> Warszawy XII Wydział Gospodarczy Krajowego Rejestru Sądowego, KRS
> 025237, NIP: 526-021-50-88. Kapitał zakładowy (opłacony w całości)
> według stanu na 01.01.2020 r. wynosi 169.401.468 złotych.
> >
> > If you are not the addressee of this message:
> >
> > - let us know by replying to this e-mail (thank you!),
> > - delete this message permanently (including all the copies which you
> have printed out or saved).
> > This message may contain legally protected information, which may be
> used
> exclusively by the addressee.Please be reminded that anyone who
> disseminates (copies, distributes) this message or takes any similar
> action, violates the law and may be penalised.
> >
> > mBank S.A. with its registered office in Warsaw, ul. Senatorska 18,
> 00-950
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> Y0HMszNaDT!7Llp4MvFE23h4R-
> paQ

Re: Syncsort to DFSORT - my time has come.

2020-10-28 Thread Frank Swarbrick
Not my dog...  I'm just a developer.


From: IBM Mainframe Discussion List  on behalf of 
Martin Packer 
Sent: Wednesday, October 28, 2020 2:32 AM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Syncsort to DFSORT - my time has come.


FWIW I would go with SMF=FULL - unless you have an exceptionally large
number of sorts - or tight SMF space restrictions.

There’s gold in them there records. :-)

Cheers, Martin

Sent from my iPad

> On 27 Oct 2020, at 21:13, Frank Swarbrick 
wrote:
>
> Here is our ICEPRM00, if you are interested.
>
> JCL
>   DYNALOC=(SYSDA,12)
>   DYNAUTO=YES
>   MSGDDN=SYSOUT
>   PARMDDN=DFSPARM
>   SMF=NO
> INV
>   DYNALOC=(SYSDA,12)
>   DYNAUTO=IGNWKDD
>   ERET=ABEND
>   MSGDDN=SORTMSG
>   PARMDDN=SORTPARM
>   SMF=SHORT
> TSO
>   SMF=SHORT
> TSOINV
>   SMF=SHORT
> TD1
>   SMF=SHORT
> TD2
>   SMF=SHORT
> TD3
>   SMF=SHORT
> TD4
>   SMF=SHORT
>
> 
> From: IBM Mainframe Discussion List  on behalf
of R.S. 
> Sent: Tuesday, October 27, 2020 11:26 AM
> To: IBM-MAIN@LISTSERV.UA.EDU 
> Subject: Re: Syncsort to DFSORT - my time has come.
>
> W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
>>A fairly quick question. Are there sample ICEPRMxx members provided
by IBM for tailoring DFSORT? I don't find any in SICESAMP.
>> Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK,
SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS shows
DFSORT as resident sort program. All seems well. I don't keep this
concatenation, it was just easier for fall back considerations.
>
> If you want some sample I can send it.
> However there is no black magic there.
> IMHO it is fundamental to define your needs, because the member is for
> defaults which can be easily overtyped by parameters in the job.
>
> Here you are:
>
> ***
> ** History of changes:
> ** 05-10-2019 R.SKORUPKA first customization
> ** dd-mm- user description...
> **
> 
> *
> * JCL (ICEAM1)
> JCL
> DYNALOC=(3390,10)
> *
> * INV (ICEAM2)
> INV
> DYNALOC=(3390,10)
>
>
>
> --
> Radoslaw Skorupka
> Lodz, Poland
>
>
>
>
>
> ==
>
> Jeśli nie jesteś adresatem tej wiadomości:
>
> - powiadom nas o tym w mailu zwrotnym (dziękujemy!),
> - usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub
zapisałeś na dysku).
> Wiadomość ta może zawierać chronione prawem informacje, które może
wykorzystać tylko adresat.Przypominamy, że każdy, kto rozpowszechnia
(kopiuje, rozprowadza) tę wiadomość lub podejmuje podobne działania,
narusza prawo i może podlegać karze.
>
> mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950
Warszawa,www.mBank.pl, e-mail: kont...@mbank.pl. Sąd Rejonowy dla m. st.
Warszawy XII Wydział Gospodarczy Krajowego Rejestru Sądowego, KRS
025237, NIP: 526-021-50-88. Kapitał zakładowy (opłacony w całości)
według stanu na 01.01.2020 r. wynosi 169.401.468 złotych.
>
> If you are not the addressee of this message:
>
> - let us know by replying to this e-mail (thank you!),
> - delete this message permanently (including all the copies which you
have printed out or saved).
> This message may contain legally protected information, which may be used
exclusively by the addressee.Please be reminded that anyone who
disseminates (copies, distributes) this message or takes any similar
action, violates the law and may be penalised.
>
> mBank S.A. with its registered office in Warsaw, ul. Senatorska 18,
00-950 Warszawa,www.mBank.pl, e-mail: kont...@mbank.pl. District Court for
the Capital City of Warsaw, 12th Commercial Division of the National Court
Register, KRS 025237, NIP: 526-021-50-88. Fully paid-up share capital
amounting to PLN 169.401.468 as at 1 January 2020.
>
> --
> 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
>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

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


Re: Syncsort to DFSORT - my time has come.

2020-10-28 Thread Martin Packer

FWIW I would go with SMF=FULL - unless you have an exceptionally large
number of sorts - or tight SMF space restrictions.

There’s gold in them there records. :-)

Cheers, Martin

Sent from my iPad

> On 27 Oct 2020, at 21:13, Frank Swarbrick 
wrote:
>
> Here is our ICEPRM00, if you are interested.
>
> JCL
>   DYNALOC=(SYSDA,12)
>   DYNAUTO=YES
>   MSGDDN=SYSOUT
>   PARMDDN=DFSPARM
>   SMF=NO
> INV
>   DYNALOC=(SYSDA,12)
>   DYNAUTO=IGNWKDD
>   ERET=ABEND
>   MSGDDN=SORTMSG
>   PARMDDN=SORTPARM
>   SMF=SHORT
> TSO
>   SMF=SHORT
> TSOINV
>   SMF=SHORT
> TD1
>   SMF=SHORT
> TD2
>   SMF=SHORT
> TD3
>   SMF=SHORT
> TD4
>   SMF=SHORT
>
> 
> From: IBM Mainframe Discussion List  on behalf
of R.S. 
> Sent: Tuesday, October 27, 2020 11:26 AM
> To: IBM-MAIN@LISTSERV.UA.EDU 
> Subject: Re: Syncsort to DFSORT - my time has come.
>
> W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
>>A fairly quick question. Are there sample ICEPRMxx members provided
by IBM for tailoring DFSORT? I don't find any in SICESAMP.
>> Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK,
SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS shows
DFSORT as resident sort program. All seems well. I don't keep this
concatenation, it was just easier for fall back considerations.
>
> If you want some sample I can send it.
> However there is no black magic there.
> IMHO it is fundamental to define your needs, because the member is for
> defaults which can be easily overtyped by parameters in the job.
>
> Here you are:
>
> ***
> ** History of changes:
> ** 05-10-2019 R.SKORUPKA first customization
> ** dd-mm- user description...
> **
> 
> *
> * JCL (ICEAM1)
> JCL
> DYNALOC=(3390,10)
> *
> * INV (ICEAM2)
> INV
> DYNALOC=(3390,10)
>
>
>
> --
> Radoslaw Skorupka
> Lodz, Poland
>
>
>
>
>
> ==
>
> Jeśli nie jesteś adresatem tej wiadomości:
>
> - powiadom nas o tym w mailu zwrotnym (dziękujemy!),
> - usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub
zapisałeś na dysku).
> Wiadomość ta może zawierać chronione prawem informacje, które może
wykorzystać tylko adresat.Przypominamy, że każdy, kto rozpowszechnia
(kopiuje, rozprowadza) tę wiadomość lub podejmuje podobne działania,
narusza prawo i może podlegać karze.
>
> mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950
Warszawa,www.mBank.pl, e-mail: kont...@mbank.pl. Sąd Rejonowy dla m. st.
Warszawy XII Wydział Gospodarczy Krajowego Rejestru Sądowego, KRS
025237, NIP: 526-021-50-88. Kapitał zakładowy (opłacony w całości)
według stanu na 01.01.2020 r. wynosi 169.401.468 złotych.
>
> If you are not the addressee of this message:
>
> - let us know by replying to this e-mail (thank you!),
> - delete this message permanently (including all the copies which you
have printed out or saved).
> This message may contain legally protected information, which may be used
exclusively by the addressee.Please be reminded that anyone who
disseminates (copies, distributes) this message or takes any similar
action, violates the law and may be penalised.
>
> mBank S.A. with its registered office in Warsaw, ul. Senatorska 18,
00-950 Warszawa,www.mBank.pl, e-mail: kont...@mbank.pl. District Court for
the Capital City of Warsaw, 12th Commercial Division of the National Court
Register, KRS 025237, NIP: 526-021-50-88. Fully paid-up share capital
amounting to PLN 169.401.468 as at 1 January 2020.
>
> --
> 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
>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


Re: Syncsort to DFSORT - my time has come.

2020-10-27 Thread Sri h Kolusu
> And, fwiw, and fyi. The  version of SHOWZOS I recently pulled from
> cbt seems not to observe the results of
>  START ICEOPT,ICEPRM=00


Dave,

You can list the installation defaults with the following JOB. It will show
you the updated values  either from parmlib or icemac.

//STEP0100 EXEC PGM=ICETOOL
//TOOLMSG  DD SYSOUT=*
//DFSMSG   DD SYSOUT=*
//OUT  DD SYSOUT=*
//TOOLIN   DD *
  DEFAULTS LIST(OUT)
/*


Thanks,
Kolusu
DFSORT Development
IBM Corporation



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


Re: Syncsort to DFSORT - my time has come.

2020-10-27 Thread Gibney, Dave
And, fwiw, and fyi. The  version of SHOWZOS I recently pulled from cbt seems 
not to observe the results of
 START ICEOPT,ICEPRM=00

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of Gibney, Dave
> Sent: Tuesday, October 27, 2020 3:05 PM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> After review of our SYNCSORT settings, I have:
> * JCL (ICEAM1)
> JCL
> DYNALOC=(3390,10)
> DYNAUTO=IGNWKDD
> EQUALS=NO
> ERET=ABEND
> SORTLIB=SYSTEM
> Y2PAST=0
> *
> * INV (ICEAM2)
> INV
> DYNALOC=(3390,10)
> DYNAUTO=IGNWKDD
> EQUALS=NO
> ERET=ABEND
> SORTLIB=SYSTEM
> Y2PAST=0
> 
> > -Original Message-
> > From: IBM Mainframe Discussion List  On
> > Behalf Of R.S.
> > Sent: Tuesday, October 27, 2020 10:26 AM
> > To: IBM-MAIN@LISTSERV.UA.EDU
> > Subject: Re: Syncsort to DFSORT - my time has come.
> >
> > W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
> > > A fairly quick question. Are there sample ICEPRMxx members provided
> > by IBM for tailoring DFSORT? I don't find any in SICESAMP.
> > > Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK,
> > SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS
> > shows DFSORT as resident sort program. All seems well. I don't keep this
> > concatenation, it was just easier for fall back considerations.
> >
> > If you want some sample I can send it.
> > However there is no black magic there.
> > IMHO it is fundamental to define your needs, because the member is for
> > defaults which can be easily overtyped by parameters in the job.
> >
> > Here you are:
> >
> >
> **
> > *
> > ** History of changes:
> > ** 05-10-2019 R.SKORUPKA first customization
> > ** dd-mm- user description...
> > **
> >
> **
> > **
> > *
> > * JCL (ICEAM1)
> > JCL
> > DYNALOC=(3390,10)
> > *
> > * INV (ICEAM2)
> > INV
> > DYNALOC=(3390,10)
> >
> >
> >
> > --
> > Radoslaw Skorupka
> > Lodz, Poland
> >
> >
> >
> >
> >
> >
> ==
> > 
> >
> > Jeśli nie jesteś adresatem tej wiadomości:
> >
> > - powiadom nas o tym w mailu zwrotnym (dziękujemy!),
> > - usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub
> > zapisałeś na dysku).
> > Wiadomość ta może zawierać chronione prawem informacje, które może
> > wykorzystać tylko adresat.Przypominamy, że każdy, kto rozpowszechnia
> > (kopiuje, rozprowadza) tę wiadomość lub podejmuje podobne działania,
> > narusza prawo i może podlegać karze.
> >
> > mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950
> >
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> > Y0HMszNaDT!5a4aavAH4V1nixdkZLxgkZ1MV-
> > HNM5Uzrdo5aYBPuixwFIYs8E7qLL8K7Du_zQ$ , e-mail: kont...@mbank.pl.
> > Sąd Rejonowy dla m. st. Warszawy XII Wydział Gospodarczy Krajowego
> > Rejestru Sądowego, KRS 025237, NIP: 526-021-50-88. Kapitał
> zakładowy
> > (opłacony w całości) według stanu na 01.01.2020 r. wynosi 169.401.468
> > złotych.
> >
> > If you are not the addressee of this message:
> >
> > - let us know by replying to this e-mail (thank you!),
> > - delete this message permanently (including all the copies which you have
> > printed out or saved).
> > This message may contain legally protected information, which may be
> used
> > exclusively by the addressee.Please be reminded that anyone who
> > disseminates (copies, distributes) this message or takes any similar action,
> > violates the law and may be penalised.
> >
> > mBank S.A. with its registered office in Warsaw, ul. Senatorska 18, 00-950
> >
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> > Y0HMszNaDT!5a4aavAH4V1nixdkZLxgkZ1MV-
> > HNM5Uzrdo5aYBPuixwFIYs8E7qLL8K7Du_zQ$ , e-mail: kont...@mbank.pl.
> > District Court for the Capital City of Warsaw, 12th Commercial Division of
> the
> > National Court Register, KRS 025237, NIP: 526-021-50-88. Fully paid-up
> > share capital amounting to PLN 169.401.468 as at 1 January 2020.
> >
> > --
> > 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: Syncsort to DFSORT - my time has come.

2020-10-27 Thread Gibney, Dave
After review of our SYNCSORT settings, I have:
* JCL (ICEAM1)
JCL   
DYNALOC=(3390,10) 
DYNAUTO=IGNWKDD   
EQUALS=NO 
ERET=ABEND
SORTLIB=SYSTEM
Y2PAST=0  
* 
* INV (ICEAM2)
INV   
DYNALOC=(3390,10) 
DYNAUTO=IGNWKDD   
EQUALS=NO 
ERET=ABEND
SORTLIB=SYSTEM
Y2PAST=0  

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of R.S.
> Sent: Tuesday, October 27, 2020 10:26 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
> > A fairly quick question. Are there sample ICEPRMxx members provided
> by IBM for tailoring DFSORT? I don't find any in SICESAMP.
> > Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK,
> SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS
> shows DFSORT as resident sort program. All seems well. I don't keep this
> concatenation, it was just easier for fall back considerations.
> 
> If you want some sample I can send it.
> However there is no black magic there.
> IMHO it is fundamental to define your needs, because the member is for
> defaults which can be easily overtyped by parameters in the job.
> 
> Here you are:
> 
> **
> *
> ** History of changes:
> ** 05-10-2019 R.SKORUPKA first customization
> ** dd-mm- user description...
> **
> **
> **
> *
> * JCL (ICEAM1)
> JCL
> DYNALOC=(3390,10)
> *
> * INV (ICEAM2)
> INV
> DYNALOC=(3390,10)
> 
> 
> 
> --
> Radoslaw Skorupka
> Lodz, Poland
> 
> 
> 
> 
> 
> ==
> 
> 
> Jeśli nie jesteś adresatem tej wiadomości:
> 
> - powiadom nas o tym w mailu zwrotnym (dziękujemy!),
> - usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub
> zapisałeś na dysku).
> Wiadomość ta może zawierać chronione prawem informacje, które może
> wykorzystać tylko adresat.Przypominamy, że każdy, kto rozpowszechnia
> (kopiuje, rozprowadza) tę wiadomość lub podejmuje podobne działania,
> narusza prawo i może podlegać karze.
> 
> mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> Y0HMszNaDT!5a4aavAH4V1nixdkZLxgkZ1MV-
> HNM5Uzrdo5aYBPuixwFIYs8E7qLL8K7Du_zQ$ , e-mail: kont...@mbank.pl.
> Sąd Rejonowy dla m. st. Warszawy XII Wydział Gospodarczy Krajowego
> Rejestru Sądowego, KRS 025237, NIP: 526-021-50-88. Kapitał zakładowy
> (opłacony w całości) według stanu na 01.01.2020 r. wynosi 169.401.468
> złotych.
> 
> If you are not the addressee of this message:
> 
> - let us know by replying to this e-mail (thank you!),
> - delete this message permanently (including all the copies which you have
> printed out or saved).
> This message may contain legally protected information, which may be used
> exclusively by the addressee.Please be reminded that anyone who
> disseminates (copies, distributes) this message or takes any similar action,
> violates the law and may be penalised.
> 
> mBank S.A. with its registered office in Warsaw, ul. Senatorska 18, 00-950
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> Y0HMszNaDT!5a4aavAH4V1nixdkZLxgkZ1MV-
> HNM5Uzrdo5aYBPuixwFIYs8E7qLL8K7Du_zQ$ , e-mail: kont...@mbank.pl.
> District Court for the Capital City of Warsaw, 12th Commercial Division of the
> National Court Register, KRS 025237, NIP: 526-021-50-88. Fully paid-up
> share capital amounting to PLN 169.401.468 as at 1 January 2020.
> 
> --
> 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: Syncsort to DFSORT - my time has come.

2020-10-27 Thread Frank Swarbrick
Here is our ICEPRM00, if you are interested.

JCL
   DYNALOC=(SYSDA,12)
   DYNAUTO=YES
   MSGDDN=SYSOUT
   PARMDDN=DFSPARM
   SMF=NO
INV
   DYNALOC=(SYSDA,12)
   DYNAUTO=IGNWKDD
   ERET=ABEND
   MSGDDN=SORTMSG
   PARMDDN=SORTPARM
   SMF=SHORT
TSO
   SMF=SHORT
TSOINV
   SMF=SHORT
TD1
   SMF=SHORT
TD2
   SMF=SHORT
TD3
   SMF=SHORT
TD4
   SMF=SHORT


From: IBM Mainframe Discussion List  on behalf of 
R.S. 
Sent: Tuesday, October 27, 2020 11:26 AM
To: IBM-MAIN@LISTSERV.UA.EDU 
Subject: Re: Syncsort to DFSORT - my time has come.

W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
> A fairly quick question. Are there sample ICEPRMxx members provided by 
> IBM for tailoring DFSORT? I don't find any in SICESAMP.
> Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK, SORTLIB 
> ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS shows DFSORT as 
> resident sort program. All seems well. I don't keep this concatenation, it 
> was just easier for fall back considerations.

If you want some sample I can send it.
However there is no black magic there.
IMHO it is fundamental to define your needs, because the member is for
defaults which can be easily overtyped by parameters in the job.

Here you are:

***
** History of changes:
** 05-10-2019 R.SKORUPKA first customization
** dd-mm- user description...
**

*
* JCL (ICEAM1)
JCL
DYNALOC=(3390,10)
*
* INV (ICEAM2)
INV
DYNALOC=(3390,10)



--
Radoslaw Skorupka
Lodz, Poland





==

Jeśli nie jesteś adresatem tej wiadomości:

- powiadom nas o tym w mailu zwrotnym (dziękujemy!),
- usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub zapisałeś 
na dysku).
Wiadomość ta może zawierać chronione prawem informacje, które może wykorzystać 
tylko adresat.Przypominamy, że każdy, kto rozpowszechnia (kopiuje, rozprowadza) 
tę wiadomość lub podejmuje podobne działania, narusza prawo i może podlegać 
karze.

mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950 
Warszawa,www.mBank.pl, e-mail: kont...@mbank.pl. Sąd Rejonowy dla m. st. 
Warszawy XII Wydział Gospodarczy Krajowego Rejestru Sądowego, KRS 025237, 
NIP: 526-021-50-88. Kapitał zakładowy (opłacony w całości) według stanu na 
01.01.2020 r. wynosi 169.401.468 złotych.

If you are not the addressee of this message:

- let us know by replying to this e-mail (thank you!),
- delete this message permanently (including all the copies which you have 
printed out or saved).
This message may contain legally protected information, which may be used 
exclusively by the addressee.Please be reminded that anyone who disseminates 
(copies, distributes) this message or takes any similar action, violates the 
law and may be penalised.

mBank S.A. with its registered office in Warsaw, ul. Senatorska 18, 00-950 
Warszawa,www.mBank.pl, e-mail: kont...@mbank.pl. District Court for the Capital 
City of Warsaw, 12th Commercial Division of the National Court Register, KRS 
025237, NIP: 526-021-50-88. Fully paid-up share capital amounting to PLN 
169.401.468 as at 1 January 2020.

--
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: Syncsort to DFSORT - my time has come.

2020-10-27 Thread Sri h Kolusu
> I can evaluate and transfer our long time SYNCSORT options. And the
manual does offer advice in this area.

Dave,

I sent you an email offline about DFSORT equivalent installation options
for syncsort.  As always please feel free to send me any kind of questions
related to migration.

Thanks,
Kolusu
DFSORT Development
IBM Corporation



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


Re: Syncsort to DFSORT - my time has come.

2020-10-27 Thread Gibney, Dave
Thank you, and Sri.
   I can evaluate and transfer our long time SYNCSORT options. And the manual 
does offer advice in this area. 
I've had this migration on my potential to-do list for some time. the incentive 
has become the imminent expiration of the license with Precisely. We literally 
have less than one year before we stop z/OS and DFSORT is included in our MFaaS 
contract.

> -Original Message-
> From: IBM Mainframe Discussion List  On
> Behalf Of R.S.
> Sent: Tuesday, October 27, 2020 10:26 AM
> To: IBM-MAIN@LISTSERV.UA.EDU
> Subject: Re: Syncsort to DFSORT - my time has come.
> 
> W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:
> > A fairly quick question. Are there sample ICEPRMxx members provided
> by IBM for tailoring DFSORT? I don't find any in SICESAMP.
> > Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK,
> SORTLIB ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS
> shows DFSORT as resident sort program. All seems well. I don't keep this
> concatenation, it was just easier for fall back considerations.
> 
> If you want some sample I can send it.
> However there is no black magic there.
> IMHO it is fundamental to define your needs, because the member is for
> defaults which can be easily overtyped by parameters in the job.
> 
> Here you are:
> 
> **
> *
> ** History of changes:
> ** 05-10-2019 R.SKORUPKA first customization
> ** dd-mm- user description...
> **
> **
> **
> *
> * JCL (ICEAM1)
> JCL
> DYNALOC=(3390,10)
> *
> * INV (ICEAM2)
> INV
> DYNALOC=(3390,10)
> 
> 
> 
> --
> Radoslaw Skorupka
> Lodz, Poland
> 
> 
> 
> 
> 
> ==
> 
> 
> Jeśli nie jesteś adresatem tej wiadomości:
> 
> - powiadom nas o tym w mailu zwrotnym (dziękujemy!),
> - usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub
> zapisałeś na dysku).
> Wiadomość ta może zawierać chronione prawem informacje, które może
> wykorzystać tylko adresat.Przypominamy, że każdy, kto rozpowszechnia
> (kopiuje, rozprowadza) tę wiadomość lub podejmuje podobne działania,
> narusza prawo i może podlegać karze.
> 
> mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> Y0HMszNaDT!5a4aavAH4V1nixdkZLxgkZ1MV-
> HNM5Uzrdo5aYBPuixwFIYs8E7qLL8K7Du_zQ$ , e-mail: kont...@mbank.pl.
> Sąd Rejonowy dla m. st. Warszawy XII Wydział Gospodarczy Krajowego
> Rejestru Sądowego, KRS 025237, NIP: 526-021-50-88. Kapitał zakładowy
> (opłacony w całości) według stanu na 01.01.2020 r. wynosi 169.401.468
> złotych.
> 
> If you are not the addressee of this message:
> 
> - let us know by replying to this e-mail (thank you!),
> - delete this message permanently (including all the copies which you have
> printed out or saved).
> This message may contain legally protected information, which may be used
> exclusively by the addressee.Please be reminded that anyone who
> disseminates (copies, distributes) this message or takes any similar action,
> violates the law and may be penalised.
> 
> mBank S.A. with its registered office in Warsaw, ul. Senatorska 18, 00-950
> Warszawa,https://urldefense.com/v3/__http://www.mBank.pl__;!!JmPEgB
> Y0HMszNaDT!5a4aavAH4V1nixdkZLxgkZ1MV-
> HNM5Uzrdo5aYBPuixwFIYs8E7qLL8K7Du_zQ$ , e-mail: kont...@mbank.pl.
> District Court for the Capital City of Warsaw, 12th Commercial Division of the
> National Court Register, KRS 025237, NIP: 526-021-50-88. Fully paid-up
> share capital amounting to PLN 169.401.468 as at 1 January 2020.
> 
> --
> 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: Syncsort to DFSORT - my time has come.

2020-10-27 Thread R.S.

W dniu 27.10.2020 o 18:16, Gibney, Dave pisze:

A fairly quick question. Are there sample ICEPRMxx members provided by IBM 
for tailoring DFSORT? I don't find any in SICESAMP.
Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK, SORTLIB 
ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS shows DFSORT as 
resident sort program. All seems well. I don't keep this concatenation, it was 
just easier for fall back considerations.


If you want some sample I can send it.
However there is no black magic there.
IMHO it is fundamental to define your needs, because the member is for 
defaults which can be easily overtyped by parameters in the job.


Here you are:

***
** History of changes:
** 05-10-2019 R.SKORUPKA first customization
** dd-mm- user description...
**

*
* JCL (ICEAM1)
JCL
DYNALOC=(3390,10)
*
* INV (ICEAM2)
INV
DYNALOC=(3390,10)



--
Radoslaw Skorupka
Lodz, Poland





==

Jeśli nie jesteś adresatem tej wiadomości:

- powiadom nas o tym w mailu zwrotnym (dziękujemy!),
- usuń trwale tę wiadomość (i wszystkie kopie, które wydrukowałeś lub zapisałeś 
na dysku).
Wiadomość ta może zawierać chronione prawem informacje, które może wykorzystać 
tylko adresat.Przypominamy, że każdy, kto rozpowszechnia (kopiuje, rozprowadza) 
tę wiadomość lub podejmuje podobne działania, narusza prawo i może podlegać 
karze.

mBank S.A. z siedzibą w Warszawie, ul. Senatorska 18, 00-950 
Warszawa,www.mBank.pl, e-mail: kont...@mbank.pl. Sąd Rejonowy dla m. st. 
Warszawy XII Wydział Gospodarczy Krajowego Rejestru Sądowego, KRS 025237, 
NIP: 526-021-50-88. Kapitał zakładowy (opłacony w całości) według stanu na 
01.01.2020 r. wynosi 169.401.468 złotych.

If you are not the addressee of this message:

- let us know by replying to this e-mail (thank you!),
- delete this message permanently (including all the copies which you have 
printed out or saved).
This message may contain legally protected information, which may be used 
exclusively by the addressee.Please be reminded that anyone who disseminates 
(copies, distributes) this message or takes any similar action, violates the 
law and may be penalised.

mBank S.A. with its registered office in Warsaw, ul. Senatorska 18, 00-950 
Warszawa,www.mBank.pl, e-mail: kont...@mbank.pl. District Court for the Capital 
City of Warsaw, 12th Commercial Division of the National Court Register, KRS 
025237, NIP: 526-021-50-88. Fully paid-up share capital amounting to PLN 
169.401.468 as at 1 January 2020.

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


Re: Syncsort to DFSORT - my time has come.

2020-10-27 Thread Sri h Kolusu
Dave,

That is good new !! We don't have samples for ICEPRMxx, however our
Installation and Customization has good examples.

 Check this link

https://www.ibm.com/support/knowledgecenter/SSLTBW_2.4.0/com.ibm.zos.v2r4.icei100/ice2ci_ICEPRM01_installation_default_overrides.htm#idg9282__iceprm01


Thanks,
Kolusu
DFSORT Development
IBM Corporation



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


Syncsort to DFSORT - my time has come.

2020-10-27 Thread Gibney, Dave
   A fairly quick question. Are there sample ICEPRMxx members provided by IBM 
for tailoring DFSORT? I don't find any in SICESAMP.
Yesterday, in my sandbox, I IPL'd with SICELPA, SORTLPA, SICELINK, SORTLIB 
ahead of the SYNCSORT libraries and not ICEPRMxx. SHOWZOS shows DFSORT as 
resident sort program. All seems well. I don't keep this concatenation, it was 
just easier for fall back considerations.

Dave Gibney
Information Technology Services
Washington State University


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