The following SAS program is submitted:
data temp.x;
set sasuser.y;
run;
What must be submitted prior to this SAS program for the program to execute successfully?
The following SAS program is submitted:
data temp.x;
set sasuser.y;
run;
What must be submitted prior to this SAS program for the program to execute successfully?
For the SAS program to execute successfully, LIBNAME statements for both the librefs TEMP and SASUSER must be submitted. This is because the program references a dataset in both librefs: one output dataset (temp.x) and one input dataset (sasuser.y). Without defining both librefs, SAS will not know where to find or how to write these datasets.
Bis correct