SAS OnlineTutorback||next

Try It! Reference temporary and permanent SAS files.

Creating HTML output? Read this first.

  1. Copy the program below and paste it into the Program Editor window (or issue the command copy sashelp.oltutor..source).
    data perm.mytemp;
       set perm.finance;
    run;
    proc print data=perm.mytemp;
    run;
    
  2. Modify the program to
    • temporarily store the new data set Mytemp
    • print the temporary data set.

  3. Submit the program and view the PROC PRINT output. Then view log messages about the program. Did both steps execute successfully?

    Return here and select Next.

Solution

back||next


Copyright © 2002 SAS Institute Inc., Cary, NC, USA.
All rights reserved.

Terms of Use & Legal Information | Privacy Statement