Below is the modified jcl

//STEP1    EXEC PGM=ADRDSSU,REGION=0M
//DASD1    DD  UNIT=SYSDA,VOL=SER=JASYS1,DISP=OLD
//DASD2    DD  UNIT=SYSDA,VOL=SER=KCVOL1,DISP=OLD
//SYSPRINT DD SYSOUT=*
//SYSIN    DD  *
    COPY INDDNAME(DASD1),OUTDDNAME(DASD2) -
    DATASET(INCLUDE('ADCDMST.IMON.LOAD')) -
    NULLSTORCLAS  -
    BYPASSACS(*)  -
    DELETE -
    CATALOG
/*

On Thu, Mar 22, 2018 at 10:00 AM, retired mainframer <
[email protected]> wrote:

> Now would be a good time to show us the complete jobstream as modified for
> your latest run
>
> > -----Original Message-----
> > From: IBM Mainframe Discussion List <[email protected]> On Behalf
> > Of johnnydeep san
> > Sent: Wednesday, March 21, 2018 8:47 PM
> > To: [email protected]
> > Subject: Re: need guide iehmove or adrdssu
> >
> > I have include BYPASS and  NULLSTORCLAS  but still it through " unable to
> > select a target volume "
> >
> > 2018.081 06:40:37 EXECUTION BEGINS
> > UNABLE TO SELECT A TARGET VOLUME FOR DATA SET
> > ADCDMST.IMON.LOAD,  08
> >
> >
> >
> >
> >
> >
> > On Thu, Mar 22, 2018 at 8:34 AM, Wayne Bickerdike <[email protected]>
> wrote:
> >
> > > Perhaps I am too literal, but since the OP said "move" rather than
> "copy"
> > > wouldn't the DELETE and CATALOG also be required?
> > >
> > > STORCLAS(NONSMS) -
> > > BYPASSACS(*), -
> > > DELETE -
> > > CATALOG
> > >
> > > He didn't say that the dataset was catalogued...I gave him the DELETE
> > > option and he chose to ignore it.
> > >
> > > On Thu, Mar 22, 2018 at 12:40 PM, Chris Hoelscher <
> [email protected]>
> > > wrote:
> > >
> > > > Perhaps I am too literal, but since the OP said "move" rather than
> "copy"
> > > > wouldn't the DELETE and CATALOG also be required?
> > > >
> > > > STORCLAS(NONSMS) -
> > > > BYPASSACS(*), -
> > > > DELETE -
> > > > CATALOG
> > > >
> > > >
> > > > Chris Hoelscher
> > > > Technology Architect, Database Infrastructure Services
> > > > Technology Solution Services
> > > > Humana Inc.
> > > > 123 East Main Street
> > > > Louisville, KY 40202
> > > > Humana.com
> > > > (502) 476-2538 or 407-7266
> > > >
> > > > -----Original Message-----
> > > > From: IBM Mainframe Discussion List [mailto:[email protected]
> ]
> > On
> > > > Behalf Of retired mainframer
> > > > Sent: Wednesday, March 21, 2018 8:26 PM
> > > > To: [email protected]
> > > > Subject: Re: [IBM-MAIN] need guide iehmove or adrdssu
> > > >
> > > > Since the original is managed by SMS, you need to tell ADRDSSU that
> you
> > > > want the copy to be unmanaged.  Look for the section "Converting Data
> > > Sets
> > > > with Data Movement" in your copy of DFSMSdss Storage Administration.
> > > Mine
> > > > (very old) says to specify both BYPASSACS and NULLSTORCLASS on the
> COPY
> > > > command.
> > > >
> > > > > -----Original Message-----
> > > > > From: IBM Mainframe Discussion List <[email protected]> On
> > > > > Behalf Of johnnydeep san
> > > > > Sent: Wednesday, March 21, 2018 4:45 PM
> > > > > To: [email protected]
> > > > > Subject: Re: need guide iehmove or adrdssu
> > > > >
> > > > > Hi,
> > > > >
> > > > > Below is my jcl for move  ADCDMST.IMON.*  from sms volume to
> non-sms
> > > > > olume
> > > > > vol001 .
> > > > >
> > > > > //STEP01 EXEC PGM=ADRDSSU,REGION=0M
> > > > > //SYSPRINT DD SYSOUT=*
> > > > > //DDOU DD UNIT=3390,DISP=SHR,VOL=SER=VOL001 //SYSIN DD *
> > > > >   COPY DS(INCL(ADCDMST.IMON.*) ) -
> > > > >   OUTDDNAME(DDOU) RELBLKA(**) -
> > > > >   ALLDATA(*) ALLEXCP FORCE SPHERE TOL(ENQF)
> > > > > /*
> > > > >
> > > > >
> > > > >
> > > > > got below error ,
> > > > >
> > > > >  DATA SET ADCDMST.IMON.LOAD IN CATALOG
> > CATALOG.Z110S.MASTER ON VOLUME
> > > > > JASYS1 WAS NOT SERIALIZED ON REQUEST
> > > > >  UNABLE TO SELECT A TARGET VOLUME FOR DATA SET
> > ADCDMST.IMON.LOAD, 08
> > > > >
> > > > >  DATA SET FILTERING IS COMPLETE. 2 OF 2 DATA SETS WERE
> > SELECTED: 0
> > > > > FAILED SERIALIZATION AND 0 FAILED FOR OTHER REASONS
> > > > >
> > > > >
> > > > > since i'm a beginner for zos, i have no clue of what i did wrong .
> All
> > > i
> > > > > need is  to move the  ADCDMST.IMON.* dataset(undefined ps file)  to
> > > non-
> > > > > sms volume . .plz guide me
> > > > >
> > > > >
> > > > > --JD --
> > > > >
> > > > > On Wed, Mar 21, 2018 at 4:49 PM, Vernooij, Kees (ITOPT1) - KLM <
> > > > > [email protected]> wrote:
> > > > >
> > > > > > ADRDSSU will do every job.
> > > > > >
> > > > > > Kees.
> > > > > >
> > > > > > > -----Original Message-----
> > > > > > > From: IBM Mainframe Discussion List [mailto:
> [email protected].
> > > EDU
> > > > ]
> > > > > On
> > > > > > > Behalf Of johnnydeep san
> > > > > > > Sent: 21 March, 2018 11:37
> > > > > > > To: [email protected]
> > > > > > > Subject: need guide iehmove or adrdssu
> > > > > > >
> > > > > > > Hi all,
> > > > > > >
> > > > > > > I have confusions on which utility will full fill my task,
> iehmove
> > > or
> > > > > > > adrdssu ?.
> > > > > > >
> > > > > > > My task is to move sequential file( which has record format of
> > > 'U' )
> > > > > > > from
> > > > > > > volume A to volume B.  I googled but i dont get any clue .
> volume b
> > > > is
> > > > > > > non-sms managed.  please guide me on this . if possible please
> > > share
> > > > the
> > > > > > > link or jcl .
> > > > > > >
> > > > > > > Regards,
> > > > > > > --JD--
> > > > > > >
> > > > > > > ------------------------------------------------------------
> > > > ----------
> > > > > > > For IBM-MAIN subscribe / signoff / archive access instructions,
> > > > > > > send email to [email protected] with the message: INFO
> > > > IBM-MAIN
> > > > > > ********************************************************
> > > > > > For information, services and offers, please visit our web site:
> > > > > > http://www.klm.com. This e-mail and any attachment may contain
> > > > > > confidential and privileged material intended for the addressee
> only.
> > > > If
> > > > > > you are not the addressee, you are notified that no part of the
> > > e-mail
> > > > or
> > > > > > any attachment may be disclosed, copied or distributed, and that
> any
> > > > other
> > > > > > action related to this e-mail or attachment is strictly
> prohibited,
> > > > and may
> > > > > > be unlawful. If you have received this e-mail by error, please
> notify
> > > > the
> > > > > > sender immediately by return e-mail, and delete this message.
> > > > > >
> > > > > > Koninklijke Luchtvaart Maatschappij NV (KLM), its subsidiaries
> and/or
> > > > its
> > > > > > employees shall not be liable for the incorrect or incomplete
> > > > transmission
> > > > > > of this e-mail or any attachments, nor responsible for any delay
> in
> > > > receipt.
> > > > > > Koninklijke Luchtvaart Maatschappij N.V. (also known as KLM Royal
> > > Dutch
> > > > > > Airlines) is registered in Amstelveen, The Netherlands, with
> > > registered
> > > > > > number 33014286
> > > > > > ********************************************************
> > > > > >
> > > > > >
> > > > > > ------------------------------------------------------------
> > > ----------
> > > > > > For IBM-MAIN subscribe / signoff / archive access instructions,
> > > > > > send email to [email protected] with the message: INFO
> > > IBM-MAIN
> > > > > >
> > > > >
> > > > > ------------------------------------------------------------
> ----------
> > > > > For IBM-MAIN subscribe / signoff / archive access instructions,
> > > > > send email to [email protected] with the message: INFO
> IBM-MAIN
> > > >
> > > > ------------------------------------------------------------
> ----------
> > > > For IBM-MAIN subscribe / signoff / archive access instructions,
> > > > send email to [email protected] with the message: INFO
> IBM-MAIN
> > > >
> > > > 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,
> age,
> > > > disability or
> > > > sex. Humana Inc. and its subsidiaries do not exclude people or treat
> them
> > > > differently
> > > > because of race, color, national origin, age, disability or sex.
> > > >
> > > > 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 [email protected] with the message: INFO
> IBM-MAIN
> > > >
> > >
> > >
> > >
> > > --
> > > Wayne V. Bickerdike
> > >
> > > ----------------------------------------------------------------------
> > > For IBM-MAIN subscribe / signoff / archive access instructions,
> > > send email to [email protected] with the message: INFO IBM-MAIN
> > >
> >
> > ----------------------------------------------------------------------
> > For IBM-MAIN subscribe / signoff / archive access instructions,
> > send email to [email protected] with the message: INFO IBM-MAIN
>
> ----------------------------------------------------------------------
> For IBM-MAIN subscribe / signoff / archive access instructions,
> send email to [email protected] with the message: INFO IBM-MAIN
>

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [email protected] with the message: INFO IBM-MAIN

Reply via email to