Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)

share|improve this question

closed as not a real question by Bill the Lizard Oct 3 '12 at 2:11

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.