IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

VLSHRT always seems to require 2 passes to extract and sort.


IBM Mainframe Forums -> DFSORT/ICETOOL
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Joel

New User


Joined: 07 Feb 2006
Posts: 11

PostPosted: Tue Feb 07, 2006 9:13 pm
Reply with quote

Can the following 2 DFSORT steps be combined into 1 for more efficiency and elegance ? OPTION VLSHRT always seems to require 2 passes to extract and sort.

//JOBS EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD DISP=SHR,DSN=TTDX.MINILOG.MDBD0186
//SORTOUT DD DISP=(,PASS),SPACE=(CYL,1100),DSN=&&L

OPTION VLSHRT
SORT FIELDS=COPY
INCLUDE COND=(62,8,CH,EQ,C'$HASP373')

//JOBS EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD DISP=(SHR,DELETE),DSN=&&L
//SORTOUT DD DISP=SHR,DSN=TTD.JOBS.MDBD0186

SORT FIELDS=(43,3,CH,A,70,9,CH,A)
OUTREC FIELDS=(1,4,43,3,70,9)
SUM FIELDS=NONE
Back to top
View user's profile Send private message
Frank Yaeger

DFSORT Developer


Joined: 15 Feb 2005
Posts: 7129
Location: San Jose, CA

PostPosted: Tue Feb 07, 2006 10:35 pm
Reply with quote

I believe these control statements would do it:

Code:

   OPTION VLSHRT                       
   INCLUDE COND=(62,8,CH,EQ,C'$HASP373')     
   SORT FIELDS=(43,3,CH,A,70,9,CH,A)         
   SUM FIELDS=NONE                           
   OUTFIL OUTREC=(1,4,43,3,70,9),VLFILL=C' ' 


You need to use OUTFIL OUTREC instead of an OUTREC statement to allow VLSHRT to be used and you need to use VLFILL to pad a "short" OUTREC field.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> DFSORT/ICETOOL

 


Similar Topics
Topic Forum Replies
No new posts Need to set RC4 through JCL SORT DFSORT/ICETOOL 5
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Need help for File Aid JCL to extract... Compuware & Other Tools 23
No new posts JCL sort card - get first day and las... JCL & VSAM 9
Search our Forums:

Back to Top