Re: A PIPE structure question

2006-07-13 Thread Rob van der Heij
On 7/14/06, Mike Walter <[EMAIL PROTECTED]> wrote: Nope. I'm not sure about "PIPCACHE", must have missed that one. The "IF" stage is part of the Pipelines Run Time Library (Pipes RTL). See: http://vm.marist.edu/~pipeline/ The IF stage is even in the built-in plumbing on z/VM. It's just the

Re: A PIPE structure question

2006-07-13 Thread Mike Walter
my employer. "Brian Nielsen" <[EMAIL PROTECTED]> Sent by: "The IBM z/VM Operating System" 07/13/2006 04:49 PM Please respond to "The IBM z/VM Operating System" To IBMVM@LISTSERV.UARK.EDU cc Subject Re: A PIPE structure question While this sounds

Re: A PIPE structure question

2006-07-13 Thread Brian Nielsen
While this sounds intriguing, neither "IF" nor "PIPCACHE" are documented in the z/VM 5.2 CMS Pipelines Reference (SC24-6076-02). Are they stages you wrote? Brian Nielsen On Thu, 13 Jul 2006 21:51:40 +0200, Rob van der Heij <[EMAIL PROTECTED]> wrote: >My apologies to the non-plumbers - we

Re: A PIPE structure question

2006-07-13 Thread Rob van der Heij
My apologies to the non-plumbers - we should have this kind of threads on CMSPIP-L instead... On 7/13/06, Brian Nielsen <[EMAIL PROTECTED]> wrote: Not my goal, but thanks anyway. I was hoping to eliminate the trivial Something that may help in a few cases (which I only dare to suggest now th

Re: A PIPE structure question

2006-07-13 Thread Brian Nielsen
On Thu, 13 Jul 2006 19:36:17 +0200, Kris Buelens <[EMAIL PROTECTED] > wrote: >I didn't throw a deep look into the pipe to fully get the topology. I >just want to give the idea: insert a FANOUT at some places and you can >split a long pipe in logical sections that fit more or less on a 3270 >disp

Re: A PIPE structure question

2006-07-13 Thread Kris Buelens
I didn't throw a deep look into the pipe to fully get the topology. I just want to give the idea: insert a FANOUT at some places and you can split a long pipe in logical sections that fit more or less on a 3270 display. Kris, IBM Belgium, VM customer support > >For longer pipes, I try to put s

Re: A PIPE structure question

2006-07-13 Thread Brian Nielsen
On Thu, 13 Jul 2006 18:34:59 +0200, Kris Buelens <[EMAIL PROTECTED] > wrote: >For longer pipes, I try to put sections close together, using an extra >FANOUT (labeled STEP2 below). >Applied to your sample: > > 'PIPE (ENDCHAR ?)', > ... /* some stream of records */ > '| p: PICK ... > '| t: T

Re: A PIPE structure question

2006-07-13 Thread Brian Nielsen
p: | f:', > > Marty > >-Original Message- >From: The IBM z/VM Operating System [mailto:[EMAIL PROTECTED] On >Behalf Of Brian Nielsen >Sent: Thursday, July 13, 2006 10:57 AM >To: IBMVM@LISTSERV.UARK.EDU >Subj

Re: A PIPE structure question

2006-07-13 Thread Kris Buelens
> Is there a more elegant way to do the following PIPE structure: > 'PIPE (ENDCHAR ?)', > ... /* some stream of records */ > '| p: PICK ... > '| t: TAKE ... > > ... /* only the records that pass all the filters come here */ > '?', > 't:', > '| f: FANINANY', > > ... /* all the records that were

Re: A PIPE structure question

2006-07-13 Thread Marty Zimelis
Sent: Thursday, July 13, 2006 10:57 AM To: IBMVM@LISTSERV.UARK.EDU Subject: A PIPE structure question Is there a more elegant way to do the following PIPE structure: 'PIPE (ENDCHAR ?)', ... /* some stream of records */ '| p: PICK ... '| t: TAKE ... ... /* on

A PIPE structure question

2006-07-13 Thread Brian Nielsen
Is there a more elegant way to do the following PIPE structure: 'PIPE (ENDCHAR ?)', ... /* some stream of records */ '| p: PICK ... '| t: TAKE ... ... /* only the records that pass all the filters come here */ '?', 't:', '| f: FANINANY', ... /* all the records that w