You can omit the libref, and refer to data sets with
a one-level name in the following form:
SAS-data-set
Data sets with one-level
names are automatically assigned to one of two SAS libraries: WORK
or USER. Most commonly, they are assigned to the temporary library
WORK and are deleted at the end of a SAS job or session. If you have
associated the libref USER with a SAS library or used the USER= system
option to set the USER library, data sets with one-level names are
stored in that library. See
SAS Libraries for more information about using the USER and WORK libraries.
The following examples show how one-level names are used in SAS statements.
/* create perm data set in location of USER=option*/
options user='c:\temp'
data test3;
/* create perm data set in current directory */
data 'test3';
/* create a temp data set in WORK directory if USER= is not specified*/
data stratifiedsample1;