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

Search criteria in Sort card


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

New User


Joined: 12 Oct 2006
Posts: 32
Location: India

PostPosted: Thu Nov 22, 2007 9:10 pm
Reply with quote

Can i have the sort card for the below requirement.

I have 1 Lakh of records in the input file.
I want to search a string in the each record and need to write a part of the filed in the out put record.

Example:
Input file:
Record1:abcdefghijkl dksldfih sdfnsdfs TO 1234567
Record2:asfdfmfkmld asdbkjdf sdfnkdf TO 7463621
Record3:sdfklnfrfllefk wefnlfew sefnkefefefer TO 4762839

Output File should look like:
1234567
7463621
4762839

In this exapmle i have used the ' TO ' string for search criteria.

Thanks in advance....
Back to top
View user's profile Send private message
krisprems

Active Member


Joined: 27 Nov 2006
Posts: 649
Location: India

PostPosted: Thu Nov 22, 2007 10:01 pm
Reply with quote

look at "Find and extract values from different positions" in Smart DFSORT Tricks
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 Nov 22, 2007 10:24 pm
Reply with quote

Nara,

You can use a DFSORT job like this to do what you asked for:

Code:

//S1    EXEC  PGM=ICEMAN
//SYSOUT    DD  SYSOUT=*
//SORTIN DD *
abcdefghijkl  dksldfih  sdfnsdfs TO 1234567
asfdfmfkmld asdbkjdf sdfnkdf  TO 7463621
sdfklnfrfllefk wefnlfew sefnkefefefer TO 4762839
/*
//SORTOUT DD SYSOUT=*
//SYSIN    DD    *
  OPTION COPY
  INREC PARSE=(%01=(STARTAFT=C' TO ',FIXLEN=7)),
    BUILD=(%01)
/*
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 How to split large record length file... DFSORT/ICETOOL 10
No new posts Search two or more word with FILEAID Compuware & Other Tools 15
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
No new posts JCL sort card - get first day and las... JCL & VSAM 9
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
Search our Forums:

Back to Top