The following SAS program is submitted:
data ONE TWO SASUSER.TWO
set SASUSER.ONE;
run;
Assuming that SASUSER.ONE exists, how many temporary and permanent SAS data sets are created?
The following SAS program is submitted:
data ONE TWO SASUSER.TWO
set SASUSER.ONE;
run;
Assuming that SASUSER.ONE exists, how many temporary and permanent SAS data sets are created?
The DATA step creates three datasets: ONE, TWO, and SASUSER.TWO. TWO is a temporary dataset as it does not have a library reference, while ONE and SASUSER.TWO are also created as temporary and permanent datasets respectively. Hence, 2 temporary and 1 permanent SAS datasets are created.
does this because the first line without semil-onlon?