| member-name | specify a one- or two-level name of a SAS data set or view. The stored process accesses the data file directly through a temporary libref. |
| “data-set-path” | provide alternate syntax for specifying a local data set. As with the member-name syntax, the stored process accesses the data file directly through a temporary libref. |
_SOURCE_, in order to be compliant with how data sources
are handled in SAS Management Console.
/* Create a local data set with 2 employee observations */
data work.newemps;
length First_Name $8 Last_Name $9 Job_Title $8;
input First_Name $ Last_Name $
Job_Title $ Salary;
datalines;
Joshua Alexander Auditor 41423
Gabriel Ryan Trainee 26018
;
run;
/* Call PROC APPEND to append the local data set to
the dataset passed by PROC STP */
proc append base=&_SOURCE_data1 data=work.newemps;
run;