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

Extract n number of records from KEY value.


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

New User


Joined: 17 Feb 2007
Posts: 52
Location: USA

PostPosted: Tue Dec 01, 2009 8:03 am
Reply with quote

Hi,

I need to extract records from a file. I need n records from Key value. The Key starts at position 2 , 10 bytes.

For example if KEY is ABCD123456 which is 10 bytes Character, I need next 50000 records starting from this KEY. I tried with INCLUDE COND but it is no use. It only extracts 1 record in output file. I tried with OPTION STOPAFT=50000 but do not know how/where to specify the starting Key value.

Thanks
Back to top
View user's profile Send private message
notonly4u

New User


Joined: 26 Apr 2005
Posts: 87
Location: Hyderabad

PostPosted: Tue Dec 01, 2009 9:30 am
Reply with quote

Is your key is in sorted order?

If so, try giving GT your key and stopaft 50000

Regards
Tanden
Back to top
View user's profile Send private message
Escapa

Senior Member


Joined: 16 Feb 2007
Posts: 1399
Location: IL, USA

PostPosted: Tue Dec 01, 2009 1:54 pm
Reply with quote

Assuming your input dataset LRECL is 80
Below is sortstep to give desired result.
Code:

//S1    EXEC  PGM=SORT       
//SORTIN DD DSN=yourinutdatasethere
//SORTOUT DD DSN=youroutputdatasethere                           
//SYSOUT    DD  SYSOUT=*                         
//SYSIN    DD  *                                 
  OPTION COPY                                                           
  INREC IFTHEN=(WHEN=GROUP,BEGIN=(2,10,CH,EQ,C'ABCD123456'),           
               PUSH=(81:SEQ=8))                                         
  OUTFIL INCLUDE=(81,8,ZD,GE,1,AND,81,8,ZD,LE,50000)                       
/*                                                                     
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 Dec 01, 2009 9:48 pm
Reply with quote

Sambhaji,

Note that you are also assuming that there is only one ABCD123456 record in the file. Because a second ABCD123456 record would start a new group with a sequence number of 1, e.g.

ABCD123456 1
ABCD123457 2
ABCD123458 3
ABCD123456 1 <- seqnum starts at 1 again

If there is only one ABCD123456 record, then this would be simpler:

Code:

  OPTION COPY                                                 
  INREC IFTHEN=(WHEN=GROUP,BEGIN=(2,10,CH,EQ,C'ABCD123456'),   
    RECORDS=50000,PUSH=(81:ID=1))                             
  OUTFIL INCLUDE=(81,1,CH,NE,C' '),                           
    BUILD=(1,80)                                               
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 Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts Compare only first records of the fil... SYNCSORT 7
No new posts Need help for File Aid JCL to extract... Compuware & Other Tools 23
Search our Forums:

Back to Top