Bruce,
   
  Thanks for your suggestion.  Can you tell me how would I code the following 
with this job:
   
  EXCLUDE(SYS1.VTOCIX.**    -
                  SYS1.VVDS.**)    -
   
  I have to exclude the above entries.  However, I am not sure how to add this 
to the main body of the job.  Can you suggest something?  


Bruce Hewson <[EMAIL PROTECTED]> wrote:
  Hello John,

I believe a lot of confusion has been caused by the original formatting of 
your command:

> DUMP DATASET(INCLUDE(IST*.** -
> MED*.** -
> X*.** -
> Y*.** -
> Z*.** -
> SRT.** -
> SYS*.** -
> TEMP.** -
> *SYSUT*.**) -
> BY(CREDT,LT,*,-1,DSORG,NE,VSAM)) -
> LOGINDDNAME(DASD) -
> OUTDD(TAPE) OPT(4) ALLDATA(*) ALLEXCP -
> TOL(ENQF)


I would have coded these as:-

> DUMP DATASET(INCLUDE( - <== changed
IST*.** - <== changed
> MED*.** -
> X*.** -
> Y*.** -
> Z*.** -
> SRT.** -
> SYS*.** -
> TEMP.** -
> *SYSUT*.** - <== changed
) - <== changed - end INCLUDE
> BY(CREDT,LT,*,-1,DSORG,NE,VSAM) -
) - <== changed - end DATASET
> LOGINDDNAME(DASD) -
> OUTDD(TAPE) OPT(4) ALLDATA(*) ALLEXCP -
> TOL(ENQF)

By formatting the end ) on separate lines, it makes it very easy to 
validate the parmaters and parentheses on the BY statement.

I believe you already have changed the BY statement to be

BY((CREDT,LT,(*,-1)),(DSORG,NE,(VSAM))) -

Regards
Bruce Hewson

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


                
---------------------------------
On Yahoo!7
  Socceroos Central: Latest news, schedule, blogs and videos.  

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