Thanks Jagdishan,But still I am not able to copy my VSAM dataset, which is also available in that volume. Rest all dataset are copied successfully. Can you please tell me the way to copy VSAM dataset as well in the same JCL.
Regards Saurabh Khandelwal On 4/5/2011 7:54 PM, jagadishan perumal wrote:
Hi, You can use the below as sample JCL : * //CPxxx EXEC PGM=ADRDSSU //SYSPRINT DD SYSOUT=* //FROM1 DD VOL=SER=xxx,DISP=SHR,UNIT=SYSALLDA //TO1 DD VOL=SER=yyy,DISP=SHR,UNIT=SYSALLDA //SYSIN DD * COPY LOGINDD(FROM1) OUTDD(TO1) TOL(IOERROR) - ALLDATA(*) ALLEXCP ADMIN PURGE - DELETE RECAT(*) ALLMULTI WAIT(0,0) - DS(INCL(**),EXCL(SYS1.VTOCIX.*,SYS1.VVDS.*)) PROCESS(UNDEF) * BYPASSACS(**) NULLSTORCLAS You can add the last line inturn it will bypass SMS rules but generally it is not recommended. Regards, Jags On Tue, Apr 5, 2011 at 7:38 PM, Richard Marchant< [email protected]> wrote:Saurabh, There is a parameter in ADRDSSU where you can bypass the ACS routines, something like BYPASSACS. Check out the manual. HTH Richard ________________________________________ From: IBM Mainframe Discussion List [[email protected]] on behalf of McKown, John [[email protected]] Sent: 05 April 2011 03:06 PM To: [email protected] Subject: Re: ADRDSSU issue My __guess__ is that your STORCLAS ACS routine is assigning a storage class to the new allocations. In my shop, I __must__ specify the parameter: STORAGECLASS(NONSMS) which is tested in the ACS routines to make a dataset non SMS managed. Again, AT MY SHOP, this is a requirement. Why? Because that's how I wrote the ACS routine. The ACS routines are in house written. -- John McKown Systems Engineer IV IT Administrative Services Group HealthMarkets(r) 9151 Boulevard 26 * N. Richland Hills * TX 76010 (817) 255-3225 phone * [email protected] * www.HealthMarkets.com<http://www.healthmarkets.com/> Confidentiality Notice: This e-mail message may contain confidential or proprietary information. If you are not the intended recipient, please contact the sender by reply e-mail and destroy all copies of the original message. HealthMarkets(r) is the brand name for products underwritten and issued by the insurance subsidiaries of HealthMarkets, Inc. -The Chesapeake Life Insurance Company(r), Mid-West National Life Insurance Company of TennesseeSM and The MEGA Life and Health Insurance Company.SM-----Original Message----- From: IBM Mainframe Discussion List [mailto:[email protected]] On Behalf Of SAURABH KHANDELWAL Sent: Tuesday, April 05, 2011 7:58 AM To: [email protected] Subject: ADRDSSU issue Hello, I am trying to copy my SYSRES volume( ex: IPE100) into one new volume ( ex IPE101). All the dataset inside IPE100 is managed by indirect cataloging. I am using below JCL for this function. //DUMPUP01 JOB CLASS=A,MSGCLASS=A,MSGLEVEL=(1,1), // NOTIFY=&SYSUID //STEP2 EXEC PGM=ADRDSSU,REGION=0M,COND=(0,LT) //SYSPRINT DD SYSOUT=* //RES1IN DD UNIT=3390,VOL=SER=DMTRES,DISP=SHR //RES1OUT DD UNIT=3390,VOL=SER=RES001,DISP=SHR //SYSIN DD * COPY INDD(RES1IN) OUTDD(RES1OUT) - DS(EXCLUDE(SYS1.VTOCIX.* - SYS1.VVDS.* - )) - TOLERATE(ENQF) SHARE ALLEXCP ALLDATA(*) CANCELERROR. But, I am getting below error while doing copy for some of the dataset. *ADR713E (001)-ALLOC(01), UNABLE TO ALLOCATE SMS MANAGED DATA SET TCPIP.SEZAXAWL* ADR713E (001)-ALLOC(01), UNABLE TO ALLOCATE SMS MANAGED DATA SET CEE.SCEESAMP BE ADR396I (001)-NEWDS(01), DATA SET SYS1.SISTASN1 ALLOCATED, ON VOLUME(S): RES001 ADR396I (001)-NEWDS(01), DATA SET SYS1.SBPXMENU ALLOCATED, ON VOLUME(S): RES001 ADR713E (001)-ALLOC(01), UNABLE TO ALLOCATE SMS MANAGED DATA SET CEE.SCEELKED BE ADR396I (001)-NEWDS(01), DATA SET SYS1.SISTCMIP ALLOCATED, ON VOLUME(S): RES001 ADR396I (001)-NEWDS(01), DATA SET SYS1.DBBLIB ALLOCATED, ON VOLUME(S): RES001 ADR396I (001)-NEWDS(01), DATA SET SYS1.MIGLIB ALLOCATED, ON VOLUME(S): RES001 ADR713E (001)-ALLOC(01), UNABLE TO ALLOCATE SMS MANAGED DATA SET ISF.SISFJCL BEC *ADR713E (001)-ALLOC(01), UNABLE TO ALLOCATE SMS MANAGED DATA SET CEE.SCEEH.SYS.H* ADR396I (001)-NEWDS(01), DATA SET SYS1.MSGENU ALLOCATED, ON VOLUME(S): RES001 ADR396I (001)-NEWDS(01), DATA SET SYS1.DGTTLIB ALLOCATED, ON VOLUME(S): RES001 ADR396I (001)-NEWDS(01), DATA SET SYS1.SAPPMOD1 ALLOCATED, ON VOLUME(S): RES001 ADR744W (001)-MRPAM(01), NO VALID MEMBERS WERE FOUND FOR PDS DATA SET SYS1.SAPPM ADR396I (001)-NEWDS(01), DATA SET SYS1.HRFCLST ALLOCATED, ON VOLUME(S): RES001 ADR396I (001)-NEWDS(01), DATA SET SYS1.SBLSKEL0 ALLOCATED, ON VOLUME(S): RES001 As per my knowledge, only non SMS managed dataset used to be on RES volume. Then I am not sure, why I am getting above error. Also the RES volume is non SMS managed. Can anybody help me to resolve this issue. Regards Saurabh ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html
---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

