Specifies the row number or external file record that SAS processes first.
| Valid in: | configuration file, SAS invocation, OPTIONS statement, SAS System Options window |
| Category: | Files: SAS Files |
| PROC OPTIONS GROUP= | SASFILES |
| Supports: | All |
specifies the number
of the first row or external file record to process in multiples of
1 (bytes); 1,024 (kilobytes); 1,048,576 (megabytes); 1,073,741,824
(gigabytes); or 1,099,511,627,776 (terabytes). For example, a value
of 8 specifies 8 bytes, and a value
of 3m specifies 3,145,728 bytes.
specifies the number
of the first row or the external file record to process as a hexadecimal
value. You must specify the value beginning with a number (0–9),
followed by an X. For example, the value 2dx specifies
the 45th row.
sets the number of the first row or external file record to process to 1. This is the default.
sets the number of the first row to process to the maximum number of rows in the data sets or records in the external file, up to the largest eight-byte, signed integer, which is 263-1, or approximately 9.2 quintillion rows.
options firstobs=11; libname myfiles fedsvr server="d1234.us.company.com" port=2171 user=user1 pwd=pass1 dsn=basedsn; data myfiles.a; set myfiles.old; /* 100 rows */ run; data myfiles.b; set myfiles.a; run; data myfiles.c; set myfiles.b; run;