> -----Original Message-----
> From: IBM Mainframe Discussion List On Behalf Of Mark Steely
> 
> We are z/OS V1R7. I would like to copy some datasets and 
> append TARGSYS to the beginning of the dataset name. (not 
> replace the high level qualifier). These are the control 
> statements I am using:
>  
> //STEP010 EXEC  PGM=ADRDSSU                    
> //*                                            
> //SYSPRINT  DD  SYSOUT=*                       
> //SYSIN    DD    *                             
>   COPY DATASET(                 -              
>          INCLUDE(               -              
>                  CEE.SCEERUN -                  
>                  ISF.SISFEXEC   -                  
>                  ))             -              
>        CANCELERROR              -              
>        CATALOG                  -              
>        OUTDYNAM((ONERSA))       -              
>        TOL(ENQF)                -              
>        RENUNC(   -                             
>              (CEE.**,TARGSYS.CEE.**) -         
>              (EUV.**,TARGSYS.EUV.**) -         
>              (ISF.**,TARGSYS.ISF.**) -         
>              (ISP.**,TARGSYS.ISP.**) -         
>              (PSY.**,TARGSYS.PSY.**) -         
>              (SYS1.**,TARGSYS.SYS1.**) -      
>              (SYS2.**,TARGSYS.SYS2.**) -      
>              ) -                              
>        TGTALLOC(SRC)   -                      
>        ALLDATA(*)      -                      
>        ALLEXCP                                
> /*                                            
> //                                            
> 
> The datasets that get created is TARGSYS.CEE and TARGSYS.ISF. 
> I would like to get TARGSYS.CEE.SCEERUN and 
> TARGSYS.ISF.SISFEXEC. Any help would be appreciated.

Seems this was just asked and answered in the past week or so.  To
change the number of qualifiers, you *must* specify fully-qualified
dataset names in the RENUNC list; you can't "do that" with wildcards.

    -jc-

----------------------------------------------------------------------
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

Reply via email to