TSV Input Format From-Entity Syntax

Log Parser

TSV Input Format From-Entity Syntax

<from-entity> ::= <filename> [ , <filename> ... ] |
http://<url> |
STDIN
The <from-entity> specified in queries using the TSV input format is either:
  • A comma-separated list of paths of TSV files, eventually including wildcards;
  • The URL of a file in the TSV format;
  • The "STDIN" keyword, which specifies that the input data is available from the input stream (commonly used when piping command executions).

Examples:

FROM LogFiles1\*.txt, LogFiles2\*.txt, \\MyServer\FileShare\*.txt
FROM http://www.microsoft.adatum.com/MyTSVFiles/example.tsv
type data.tsv | LogParser "SELECT * FROM STDIN" -i:TSV


© 2004 Microsoft Corporation. All rights reserved.