TSV Input Format From-Entity Syntax
<from-entity> | ::= |
<filename> [ , <filename> ... ] | http://<url> | STDIN |
- 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