BookmarkSubscribeRSS Feed
Tap222
Calcite | Level 5

DATA step creates a permanent SAS data set?

2 REPLIES 2
Cynthia_sas
Diamond | Level 26

Hi:

  To illustrated Kurt's point.

cynthia

** temporary data set, will be in WORK library;
** WORK library is "cleared" at the end of every session;
data class;
  set sashelp.class;
  age_in_5_yrs = age + 5;
run;
  
** permanent data set will be in C:\mydata folder;
** and will persist after SAS session ends;
libname perm 'c:\mydata';
data perm.class;
  set sashelp.class;
  age_in_5_yrs = age + 5;
run;
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1389 views
  • 0 likes
  • 3 in conversation