Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tekuffe

    need a utitlity to concatenate all dataset having common node

    Hi deveshjogal, one idea how to do this is: Use one step in a batch job (REXX in batch) to create JCL using file tailoring. First, find all datasets. This could be done with a utility by Neil Hancock, CSILCAT.REXX at http://www.uberfish.freeserve.co.uk/Computers/ Then, create a table...
  2. tekuffe

    1. Counting records 2. Wait

    I have tried to find it too, but found no dircct way to do this. The only ways I figured out were Allocate files for sorting the file Call Sort from within the REXX to copy the file Read the the SYSOUT file, there is a line giving number of records, e.g. "ICE090I 0 OUTPUT LRECL = 125...
  3. tekuffe

    Reading and writing to VSAM files using REXX

    A simple solution is to use REPRO. This code reads on record from a VSAM parameter file. ADDRESS TSO , "ALLOCATE FILE(TEMPDD) NEW SPACE(1) TRACKS DSORG(PS) RECFM(F,B), LRECL(139) BLKSIZE(27939)" ADDRESS TSO , "REPRO INFILE("VSAM_file")...
  4. tekuffe

    JCL SDSF JOBNAME JOBID

    Do it in a REXX, put your job in a dataset and submit it like this X = OUTTRAP("Subm.",1) /* Trap job submit message */ SUBMIT Dsn /* Submit the job */ X = OUTTRAP("OFF")...

Part and Inventory Search

Back
Top