IIS Output Format Into-Entity Syntax
<into-entity> | ::= |
<filename> | STDOUT |
- A filename;
- The "STDOUT" keyword, which specifies that the output data is to be written to the output stream (the console output).
The default into-entity for queries that do not specify an INTO clause is "STDOUT".
The IIS output format supports the multiplex feature, which can be enabled by specifying '*' wildcards in the into-entity filename. This feature allows output records to be written to different files depending on the values of their fields. For more information on the multiplex feature, see Multiplexing Output Records.
Examples:
INTO inetsv1.log
INTO \\COMPUTER01\Logs\in040528.log
INTO STDOUT
INTO Logs_*_*\in*.log