Starting with PC-SAS and have been giving a SAS dataset ccc.sas7bdat. On that dataset is a variable that I have modified, I have made the new variable and dropped the previous variable. How do I then get the new SAS dataset written back to the LIBNAME: My current code: libname wombat 'd:\rawdata'; data wombat.sra1 (drop = ssan); set one; proc contents data=wombat.sra1; run; data _null_; set wombat.sra1; file 'd:\rawdata\ddd.sas7bdat'; run;
... View more