Rex, I used your jcl and it worked. I was successful with and without the NORUN parm. A massive thanks. On Thursday, 16 May 2019, 7:35:43 pm UTC, Pommier, Rex <rpomm...@sfgmembers.com> wrote: John,
I'm running 2.2 as well. I was able to run it successfully copying 2 datasets to a tape. And just for kicks and giggles, I removed the TYPRUN parm and it dumped the 2 datasets to a single tape. Here's my JCL/parms: //STEP005 EXEC PGM=ADRDSSU,REGION=0M,PARM='TYPRUN=NORUN' //SYSPRINT DD SYSOUT=* //DASD1 DD UNIT=3390,VOL=SER=S10057,DISP=SHR //OUTVOL1 DD UNIT=VTS,DISP=(,CATLG), // DSN=RRP.PHYS.DUMP //SYSIN DD * DUMP DATASET( - INCLUDE( - RRP.ROCKET.SJHNCLIB - RRP.ROCKET.SJHNLOAD - )) - CANCELERROR - OPT(4) ALLDATA(*) ALLEXCP - INDDNAME(DASD1) - OUTDDNAME( - OUTVOL1 - ) - TOL(ENQF) - WAIT(1,1) /* And my output: ADR101I (R/I)-RI01 (01), TASKID 001 HAS BEEN ASSIGNED TO COMMAND 'DUMP ' ADR109I (R/I)-RI01 (01), 2019.136 14:32:16 INITIAL SCAN OF USER CONTROL STATEMENTS COMPLETED ADR146I (R/I)-RI03 (15), OBSOLETE KEYWORD INDDNAME SPECIFIED. PHYSINDDNAME WILL BE USED ADR016I (001)-PRIME(01), RACF LOGGING OPTION IN EFFECT FOR THIS TASK ADR006I (001)-STEND(01), 2019.136 14:32:16 EXECUTION BEGINS ADR329I (001)-DTDS (01), DATA SET DUMP OF VOLUME S10057 BEGINS ON TAPE A04491 SEQUENCE 0001 ADR329I (001)-DTDS (02), DATA SET DUMP OF VOLUME S10057 ENDS ON TAPE A04491 SEQUENCE 0001 ADR378I (001)-DTDS (01), THE FOLLOWING DATA SETS WERE SUCCESSFULLY PROCESSED FROM VOLUME S10057 RRP.ROCKET.SJHNCLIB RRP.ROCKET.SJHNLOAD ADR006I (001)-STEND(02), 2019.136 14:32:17 EXECUTION ENDS ADR013I (001)-CLTSK(01), 2019.136 14:32:17 TASK COMPLETED WITH RETURN CODE 0000 ADR012I (SCH)-DSSU (01), 2019.136 14:32:17 DFSMSDSS PROCESSING COMPLETE. HIGHEST RETURN CODE IS 0000 So, yes, DFDSS is OK dumping more than one physical dataset to a tape. Rex -----Original Message----- From: IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU> On Behalf Of John Dawes Sent: Thursday, May 16, 2019 11:55 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: Re: [External] Re: DFDSS QUESTION - PHYSICAL DATASET BACKUP Rex,I tried both INDDNAME & PHYSINDD as well. I can confirm that both dsns are on the same volume.Maybe you can try a test to see if you can do a successful Physical backup of 2 dsns.I am curious if it works for you. I am running V2R02.0 On Thursday, 16 May 2019, 4:47:56 pm UTC, Pommier, Rex <rpomm...@sfgmembers.com> wrote: John, Do you need to change your INDDNAME to PHYSINDD? The 2.2 manual indicates that INDDNAME is used for full or track copying and PHYSINDD is used for datasets. Are both the datasets you're going after on the same volume? Rex -----Original Message----- From: IBM Mainframe Discussion List <IBM-MAIN@LISTSERV.UA.EDU> On Behalf Of John Dawes Sent: Thursday, May 16, 2019 10:21 AM To: IBM-MAIN@LISTSERV.UA.EDU Subject: [External] Re: DFDSS QUESTION - PHYSICAL DATASET BACKUP I tried your suggestion but it didn't work: ADR129E (001)-RI01 (01), KEYWORD ' ' IS IMPROPER On Thursday, 16 May 2019, 3:13:43 pm UTC, Mike Schwab <mike.a.sch...@gmail.com> wrote: https://www.ibm.com/support/knowledgecenter/en/SSLTBW_2.1.0/com.ibm.zos.v2r1.adru000/r2298.htm INCLUDE(data.set.one, - data.set.two) Commas are REQUIRED. On Thu, May 16, 2019 at 9:51 AM John Dawes <000000ff0e22811f-dmarc-requ...@listserv.ua.edu> wrote: > > G'Day, > I am encountering a problem performing a Physical dataset backup of > several dsn which are on a specific volume. For some reason it doesn't work. > I receive the error message ADR129E (001)-RI01 (01), KEYWORD ' ' IS > IMPROPER Below is the job output and the JCL. Can you spot my error? Does > DFDSS support a phyisical backup of multiple dsns? > ADR031I (SCH)-PRIME(01), TYPRUN=NORUN REQUESTED. TASKS WILL EXECUTE > INNORUN MODE DUMP INDDNAME(DASD1)OUTDDNAME(TAPE1) - > DATASET(INCLUDE(HESP.IMS.PROD.MATRIX - > HESP.NETVIEW.PRF)) - > TOL(ENQF) - OPT(4)ALLDATA(*) ALLEXCP ADR101I > (R/I)-RI01 (01), TASKID 001 HAS BEEN ASSIGNED TO COMMAND 'DUMP' > > ADR109I (R/I)-RI01 (01), 2019.136 10:21:19 INITIAL SCAN OF USER > CONTROLSTATEMENT > > ADR129E (001)-RI01 (01), KEYWORD ' ' IS IMPROPER > > ADR131E (001)-RI03 (01), ABOVE TEXT BYPASSED UNTIL NEXT COMMAND > > ADR017E (001)-CLTSK(01), 2019.136 10:21:19 TASK NOT SCHEDULED DUE > TOERROR. TASK > > /* > > //NORUN EXECPGM=ADRDSSU,REGION=4096K,PARM='TYPRUN=NORUN' > > //*STEP1 EXECPGM=ADRDSSU,REGION=4M,TIME=1440,PARM='UTILMSG=YES' > > //DASD1 DD UNIT=SYSDA,VOL=SER=PROD03,DISP=SHR > > //TAPE1 DD DSN=MVS.PHYSICAL.BKUP.PROD03, > > // DISP=(,CATLG,DELETE),UNIT=3490,VOL=(,,,99) > > //SYSPRINT DD SYSOUT=* > > //SYSMAP DD SYSOUT=* > > //SYSIN DD * > DUMP INDDNAME(DASD1)OUTDDNAME(TAPE1) - >DATASET(INCLUDE(HESP.IMS.PROD.MATRIX - >HESP.NETVIEW.PRF)) - TOL(ENQF) - >OPT(4) ALLDATA(*) ALLEXCP > /* > > > > ---------------------------------------------------------------------- > For IBM-MAIN subscribe / signoff / archive access instructions, send > email to lists...@listserv.ua.edu with the message: INFO IBM-MAIN -- Mike A Schwab, Springfield IL USA Where do Forest Rangers go to get away from it all? ---------------------------------------------------------------------- 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 The information contained in this message is confidential, protected from disclosure and may be legally privileged. If the reader of this message is not the intended recipient or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any disclosure, distribution, copying, or any action taken or action omitted in reliance on it, is strictly prohibited and may be unlawful. If you have received this communication in error, please notify us immediately by replying to this message and destroy the material in its entirety, whether in electronic or hard copy format. Thank you. ---------------------------------------------------------------------- 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 The information contained in this message is confidential, protected from disclosure and may be legally privileged. If the reader of this message is not the intended recipient or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any disclosure, distribution, copying, or any action taken or action omitted in reliance on it, is strictly prohibited and may be unlawful. If you have received this communication in error, please notify us immediately by replying to this message and destroy the material in its entirety, whether in electronic or hard copy format. Thank you. ---------------------------------------------------------------------- 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