I needed to extract fields from multiple rows into a single row. Here's what I ended up with. Seems to work, I just thought I'd share it.
Sample input: ...stuff... Field1=tom Field2=dick ...more stuff Field1=harry Field2=john ...even more stuff Field1=robert Field2=reid
Final Sql: SELECT TRIM(EXTRACT_TOKEN(EXTRACT_TOKEN(Text, 1, 'Field1='), -1, ' ' )) as Field1Value, TRIM(EXTRACT_TOKEN(EXTRACT_TOKEN(Text, 1, 'Field2='), -1, ' ' )) as Field2Value, CASE Field2Value WHEN NULL Then NULL ELSE '\u000D' END As EolValue
INTO %OutputFile% FROM %InputFile%
WHERE Field1Value is not null AND Field2Value is not null
Final TPL: %Field1Value% %Field2Value% %EolValue%
CommandLine: logparser -i:TEXTLINE -o:TPL -tpl:Try1.tpl file:Try1.sql?InputFile="Try1_input.txt"+OutputFile="Try1_output.txt"
Result: tom dick harry john robert reid
(Actually each pair is on a separate line)