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

Find a string in a dataset and eliminate those records


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

New User


Joined: 10 Mar 2005
Posts: 41
Location: United States Of America

PostPosted: Fri Jan 25, 2008 2:50 pm
Reply with quote

Hi,

I have a dataset from which I want to eliminate records having string "STRING". This string might be located in any position of a record.

Ex :

AAAASTRINGAAAAA
BBBBBBSTRINGBBB
STRINGCCCCCCCC

The output file should not have any records which has string "STRING"

I hope ICETOOL can do this. Any one have idea?

Regards,
Back to top
View user's profile Send private message
acevedo

Active User


Joined: 11 May 2005
Posts: 344
Location: Spain

PostPosted: Fri Jan 25, 2008 2:56 pm
Reply with quote

search for SS (STRING SEARCH).

1,80,SS,NE,C'STRING'...
Back to top
View user's profile Send private message
sameer

New User


Joined: 10 Mar 2005
Posts: 41
Location: United States Of America

PostPosted: Fri Jan 25, 2008 3:00 pm
Reply with quote

Thanks for immediate reply. Which Utility I need to for this command??

Regards,
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Fri Jan 25, 2008 3:00 pm
Reply with quote

sameer,


Use the OMIT COND/SS substring search combination for your requirement. Search the DFSORT forum fro examples.
Back to top
View user's profile Send private message
Aaru

Senior Member


Joined: 03 Jul 2007
Posts: 1287
Location: Chennai, India

PostPosted: Fri Jan 25, 2008 3:01 pm
Reply with quote

sameer,

Quote:
Which Utility I need to for this command??


SORT. Search the DFSORT forum.
Back to top
View user's profile Send private message
sameer

New User


Joined: 10 Mar 2005
Posts: 41
Location: United States Of America

PostPosted: Fri Jan 25, 2008 3:02 pm
Reply with quote

Thank you
Back to top
View user's profile Send private message
sameer

New User


Joined: 10 Mar 2005
Posts: 41
Location: United States Of America

PostPosted: Fri Jan 25, 2008 5:23 pm
Reply with quote

Thanks Acevedo & Aaru it worked.
Back to top
View user's profile Send private message
acevedo

Active User


Joined: 11 May 2005
Posts: 344
Location: Spain

PostPosted: Fri Jan 25, 2008 7:12 pm
Reply with quote

Aaru wrote:
sameer,

Quote:
Which Utility I need to for this command??


SORT. Search the DFSORT forum.



or Syncsort.
Back to top
View user's profile Send private message
sameer

New User


Joined: 10 Mar 2005
Posts: 41
Location: United States Of America

PostPosted: Fri Jan 25, 2008 7:15 pm
Reply with quote

Yes Acevedo, I got this information from DFSORT forum.

Once again thanks for the information.
Back to top
View user's profile Send private message
Ajay Baghel

Active User


Joined: 25 Apr 2007
Posts: 206
Location: Bangalore

PostPosted: Fri Jan 25, 2008 7:16 pm
Reply with quote

The following sort card would eliminate all the records containing the sting 'STRING' anywhere in the 1 to 80 cloumn record :

Code:

//SYSIN DD *
  OPTION COPY
  OMIT COND=(1,80,SS,EQ,C'STRING')
/*


the program is SORT .

-Ajay
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 Replace each space in cobol string wi... COBOL Programming 3
No new posts PARSE Syntax for not fix length word ... JCL & VSAM 7
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
No new posts FINDREP - Only first record from give... DFSORT/ICETOOL 3
No new posts Compare only first records of the fil... SYNCSORT 7
Search our Forums:

Back to Top