Specifies an external file to read with an INPUT statement.
Valid in: | a DATA step |
Windows specifics: | Valid values for encoding-value, file-specification, and host-options |
See: | INFILE Statement in SAS Statements: Reference |
identifies the source of input data records, usually an external file. The file-specification argument can be any of the file specification forms that are discussed in Referencing External Files. The reserved fileref CARDS enables the INFILE statement to reference instream data.
specifies the encoding to use when reading from the external file. The value for ENCODING= indicates that the external file has a different encoding from the current session encoding.
names external I/O statement options that are specific to the Windows operating environment. They can be any of the following:
specifies the number of bytes that are physically read or written in an I/O operation. The default is 8K. The maximum is 1M.
is used only in the context of named pipes. This option indicates whether the client is to wait if no data is currently available. The default value is BLOCK.
is used only in the context of named pipes. This option indicates the type of pipe. The default value is BYTE.
controls how a communications port time-out is handled. A time-out occurs when no data is available at the communications port for a period of time, usually 60 seconds. The COMTIMEOUT= option can have the following values:
returns an end-of-file (EOF) character when a time-out occurs. This behavior is the default. The EOF character causes the current DATA step to terminate.
instructs the communications port to wait forever for data. This value overrides the time-out. In this case, no record is returned to the DATA step until data are available. This action can cause your program to go into an infinite loop, so use this value with caution.
is used only in the context of named pipes and is valid only when defining the server. This option indicates that if an end-of-file (EOF) character is received from a client, the server should try to connect to the next client.
returns a record length of 0 bytes when a time-out occurs. However, the DATA step does not terminate; it simply tries to read data again.
is used only in the context of Dynamic Data Exchange (DDE). For a complete description and an example of using this option, see Using the DDE HOTLINK.
is used in the context of I/O operations on variable record format files. When this option is specified, any occurrence of ^Z is interpreted as character data and not as an end-of-file marker.
specifies the record length (in bytes). Under Windows, the default is 32767. The value of record-length can range from 1 to 1,073,741,823 (1 gigabyte).
is used only in the context of Dynamic Data Exchange (DDE). This option enables you to use nontab character delimiters between variables. For more information about this option, see Using the NOTAB Option with DDE.
specifies an unnamed pipe.
Requirement | You must specify a file-specification reference and the file-specification reference must contain an absolute path and filename enclosed in quotation marks. |
controls the record format. The following values are valid under Windows:
F | indicates fixed format. |
N | indicates binary format and causes the file to be treated as a byte stream. If LRECL is not specified, by default SAS reads 32767 bytes at a time from the file. |
P | indicates print format. |
S370V | indicates the variable S370 record format (V). |
S370VB | indicates the variable block S370 record format (VB). |
S370VBS | indicates the variable block with spanned records S370 record format (VBS). |
V | D | indicates variable format. This format is the default. |
is used only in the context of named pipes. This option specifies how long a named pipe client should wait for a busy pipe. The minimum (and default) value for seconds is 10.
is used only in the context of named pipes. This option specifies the mode of a named pipe. The default value is SERVER.
specifies the end-of-line character for the file. Use this option to share files between the UNIX and Windows operating environments. If termstr is not specified, a single LF or a CRLF function as the end of line character. If termstr=CRLF, then CRLF functions as the EOL character. The following values are valid are under Windows:
Carriage return line feed. Use TERMSTR=CRLF to read files that are formatted for Windows or DOS. CRLF is the default.
Line feed. Use TERMSTR=LF to read files that are formatted for UNIX. If a file contains CRLF characters, the CR functions as part of the data and not an end of line character.
Carriage Return. Use TERMSTR=CR if the end of line character is a CR.
data new; infile '("c:\myfiles\*.*","c:\myotherfiles\abc.dat")'; input; run;