SAS keeps track of the most recently created SAS data
set through the reserved name _LAST_. When you execute a DATA or
PROC step without specifying an input data set, by default, SAS uses
the _LAST_ data set. Some functions use the _LAST_ default as well.
The _LAST_= system option
enables you to designate a data set as the _LAST_ data set. The name
that you specify is used as the default data set until you create
a new data set. You can use the _LAST_= system option when you want
to use an existing permanent data set for a SAS job that contains
a number of procedure steps. Issuing the _LAST_= system option enables
you to avoid specifying the SAS data set name in each procedure statement.
The following OPTIONS statement specifies a default SAS data set:
options _last_=schedule.january;