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

Sort Parameter to omit few records at a position


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
ajay_udl

New User


Joined: 10 Oct 2006
Posts: 29

PostPosted: Thu Jul 31, 2008 4:47 am
Reply with quote

Hi All,

Could you help me in providing a sort parameter to remove few records.

The record to be removed based on a value at position 67 with 2 byte length and its a Binary field (comp variable) having value 22.

thanks
ajay.
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: Thu Jul 31, 2008 5:15 am
Reply with quote

Here's a DFSORT job that will do what you asked for. I assumed your input file has RECFM=FB.

Code:

//S1    EXEC  PGM=ICEMAN                 
//SYSOUT    DD  SYSOUT=*                 
//SORTIN DD DSN=...  input file (FB)     
//SORTOUT DD DSN=...  output file (FB)             
//SYSIN    DD    *                       
  OPTION COPY                             
  OMIT COND=(67,2,BI,EQ,+22)   
/*       
Back to top
View user's profile Send private message
ajay_udl

New User


Joined: 10 Oct 2006
Posts: 29

PostPosted: Thu Jul 31, 2008 10:15 am
Reply with quote

Thanks a lot Frank it worked.. icon_smile.gif
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Pulling a fixed number of records fro... DB2 2
No new posts JCL sort card - get first day and las... JCL & VSAM 9
Search our Forums:

Back to Top