I am writing kettle transformation.
My input file looks like following
sessionId=40936a7c-8af9|txId=40936a7d-8af9-11e|field3=val3|field4=val4|field5=myapp|field6=03/12/13 15:13:34|
Now, how do i process this file? I am completely at loss.
First step is CSV file input with | as delimiter
My analysis will be based on "Value" part of name value pair.
Has anyone processes such files before?

sedcommands could do the trick. I don't know about kettle though, so I can't answer the immediate question. Is there a way to set multiple delimiters (| and =)? Then you could just look at fields 2, 4, 6, 8, etc... - N West