Re: Delete cms file record using PIPE

2009-10-23 Thread Rob van der Heij
On Fri, Oct 23, 2009 at 6:39 AM, Gonen Shoham gone...@sapiens.com wrote: I am not a PIPE expert The criteria is actually delete lines where word(1) = 'XX' and word(3) = 'YY' and substring(25,1) = 'a'   etc We probably should have such discussions on CMSPIP-L instead... The etc makes

Re: Delete cms file record using PIPE

2009-10-23 Thread Schuh, Richard
@LISTSERV.UARK.EDU Subject: Re: Delete cms file record using PIPE I am not a PIPE expert The criteria is actually delete lines where word(1) = 'XX' and word(3) = 'YY' and substring(25,1) = 'a' etc Any sample around ? Thanks -Original Message- From: The IBM z/VM

Re: Delete cms file record using PIPE

2009-10-23 Thread Brian Nielsen
Another generic solution that avoids multi-stream pipes is: PIPE input file a | REXX filter | output file a and code the REXX filter stage to do whatever complicated filtering process you want to do. Brian Nielsen On Fri, 23 Oct 2009 11:15:25 +0200, Rob van der Heij rvdh...@gmail.com

Delete cms file record using PIPE

2009-10-22 Thread Gonen Shoham
I have a CMS file in which I need to delete lines that meet specific criteria. For example - Delete all line where (word,1) = 'XX' and (word,2) = 'YY' Can someone suggest a way to perform this task using PIPES ? Thanks

Re: Delete cms file record using PIPE

2009-10-22 Thread Doug Breneman
Subject:Delete cms file record using PIPE Sent by:The IBM z/VM Operating System IBMVM@LISTSERV.UARK.EDU

Re: Delete cms file record using PIPE

2009-10-22 Thread Rob van der Heij
On Thu, Oct 22, 2009 at 11:22 PM, Gonen Shoham gone...@sapiens.com wrote: I have a CMS file in which I need to delete lines that meet specific criteria. For example - Delete all line where (word,1) = 'XX' and (word,2) = 'YY' Can someone suggest a way to perform this task using PIPES  ?

Re: Delete cms file record using PIPE

2009-10-22 Thread Schuh, Richard
System [mailto:ib...@listserv.uark.edu] On Behalf Of Rob van der Heij Sent: Thursday, October 22, 2009 2:33 PM To: IBMVM@LISTSERV.UARK.EDU Subject: Re: Delete cms file record using PIPE On Thu, Oct 22, 2009 at 11:22 PM, Gonen Shoham gone...@sapiens.com wrote: I have a CMS file in which I need

Re: Delete cms file record using PIPE

2009-10-22 Thread Rob van der Heij
On Fri, Oct 23, 2009 at 12:17 AM, Schuh, Richard rsc...@visa.com wrote: Now a question for those more deeply involved in Pipelines than me, is there any advantage, other than perceived beauty, of using the not pick wn == ,XX, construct vs. pick wn ^== ,XX,? I would think not, but I may be