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

Command to delete all the lines with specific string.


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

Active User


Joined: 23 Feb 2006
Posts: 305
Location: Hyderabad,India

PostPosted: Thu Jun 15, 2006 5:00 pm
Reply with quote

Hi,

My requirement is to select all the lines in a member with a particular string andl delete all the lines with single command.

Could anyone let me know the command. I remember there is a command for that. But couldn't recollect.

~Vamsi
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Thu Jun 15, 2006 5:14 pm
Reply with quote

Well, if it were me, and if I was editing the member in an ISPF EDIT session, I would first exclude all of the records containg the string:

X 'STRING' ALL

then I would delete all of the excluded records:

DEL X ALL

then I would save the edited data:

SAVE
Back to top
View user's profile Send private message
shreevamsi

Active User


Joined: 23 Feb 2006
Posts: 305
Location: Hyderabad,India

PostPosted: Thu Jun 15, 2006 7:18 pm
Reply with quote

superk,

What is the basic difference between DEL all X and DEL all NX

~Vamsi
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Thu Jun 15, 2006 7:19 pm
Reply with quote

One is DELETE ALL EXCLUDED.

The other is DELETE ALL NON-EXCLUDED.

They are inverse operations of each other.
Back to top
View user's profile Send private message
mmwife

Super Moderator


Joined: 30 May 2003
Posts: 1592

PostPosted: Mon Jun 26, 2006 12:57 am
Reply with quote

Adding to what K suggested, you might want to enter "flip" (no quotes) on the cmd line after issuing the "X 'STRING' ALL".

This will allow you to see what you're deleting before you do. Many times you get more (or less) than you bargained for. You can also get the same result with:

x all;f all 'string'

If you're satisfied, then enter del all nx.
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 RACF - Rebuild SETROPTS command which... All Other Mainframe Topics 3
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 DELETE SPUFI DB2 1
No new posts DSNTIAUL driven delete IBM Tools 0
Search our Forums:

Back to Top