I am using below JCL and this also not able to backup VSAM dataset. I am getting same error.

JCL

//DUMPUP01  JOB CLASS=A,MSGCLASS=A,MSGLEVEL=(1,1),
//          NOTIFY=&SYSUID
//STEP2     EXEC  PGM=ADRDSSU,REGION=4M         ,PARM='TYPRUN=NORUN'
//SYSPRINT  DD  SYSOUT=*
//INVOL1    DD  VOL=SER=DMTCAT,UNIT=3390,DISP=SHR
//OUTVOL1   DD  VOL=SER=RES001,UNIT=3390,DISP=SHR
//SYSIN     DD  *
  COPY DATASET(INCLUDE(**)  -
               EXCLUDE(SYS1.VTOCIX.** -
               SYS1.VVDS.** -
               SYSUCAT.** -
               OMVS.**    -
               MVSSMP*.** -
               )) -
       LOGINDDNAME(INVOL1) -
       ALLDATA(*)  -
       ALLEXCP     -
       CANCELERROR -
       BYPASSACS(**) -
       FORCE         -
       NULLMGMTCLAS  -
        NULLSTORCLAS  -
        OUTDDNAME(OUTVOL1)   -
        PERCENTUTILIZED(100) -
        PROCESS(SYS1) -
        REPLACE -
        SHARE -
        SPHERE -
        TGTALLOC(SOURCE) -
        TOLERATE(ENQFAILURE) -
        ADMINISTRATOR

O/P


0ADR455W (001)-DDDS (01), THE FOLLOWING DATA SETS WERE NOT SUCCESSFULLY PROCESSE
0                          CENTER.HFS
0                          DFHSM.BCDS
0                          DFHSM.MCDS
0                          DFHSM.OCDS
0                          IPCS.DATASET.DIRECTRY
0                          IPCS.PROBLEM.DIRECTRY
0                          PAGE.TESTMVS.COMMON
0                          PAGE.TESTMVS.LOCAL
0                          PAGE.TESTMVS.PLPA
1PAGE 0009 5695-DF175 DFSMSDSS V1R09.0 DATA SET SERVICES 2011.096 07:50
-                          SYS1.ENULANG


Regards
Saurabh

On 4/6/2011 1:36 PM, Gonzalo Cengotita wrote:
The error with the IODF (ADR468E) looks like it was caused by the lack of
PROCESS(SYS1) parameter.
On the other hand, the parameter for copying VSAM properly  is SPHERE.


I copied your last try and it worked ok for me. Maybe the last  "//*" is not
at the column 1?. I would delete it and try again
I usually copy VSAM and nonVSAM at the same time with SPHERE with no
problem.





On Wed, Apr 6, 2011 at 7:47 AM, SAURABH KHANDELWAL<
saurabh.khandel...@oracle.com>  wrote:

No, I am not using any parameter for coping VSAM dataset. I was asking you
to suggest me , if you have idea about any parameter, which can be useful
for coping VSAM dataset.


Regards
Saurabh Khandelwal



----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to lists...@bama.ua.edu 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to