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

skipping records in a VB file while sorting


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

New User


Joined: 27 Dec 2005
Posts: 58

PostPosted: Fri Jun 26, 2009 2:22 pm
Reply with quote

we have a VB VSAM file with RECORDSIZE(2048 32760).We have a requirement to delete records that have '07' in the 350th byte.

We are trying to get this done thru an OMIT COND=(354,2,CH,EQ,C'07) into a flat file and then Delete/Define the VSAM file and put the remaining recs back.

However we find that there are records which are less than 350 in length and for those SORT fails.

Is there any option in DFSORT to skip the records that are less than 350 bytes and only apply the OMIT COND on the remaining records.
Back to top
View user's profile Send private message
senjay

Active User


Joined: 10 May 2007
Posts: 147
Location: India

PostPosted: Fri Jun 26, 2009 2:26 pm
Reply with quote

Hi,

Use OPTION VLSHRT
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Fri Jun 26, 2009 2:27 pm
Reply with quote

Take a look in the manual for
Code:
 OPTION  VLSCMP
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: Fri Jun 26, 2009 9:19 pm
Reply with quote

I'd suggest:

Code:

   OMIT COND=(1,2,BI,GE,+355,AND,354,2,CH,EQ,C'07)


That will ensure that records which do not have the bytes in 354-355 that you are testing for are kept. This is probably more efficient than using VLSHRT or VLSCMP.
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 Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
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
Search our Forums:

Back to Top