*How do I recover a file? I am learning SAS using University SAS Studio and I came across the following problem. The eu_occ table that is part of the PG1 library of the Essentials 1 course is only showing the Country and Geo columns: *Run pg1.eu_occ;
data pg1.eu_occ2;
set pg1.eu_occ;
run; Using statements suggested by Roger Dean: *Statements by Roger Dean;
data WORK.EU_OCC;
infile datalines dsd truncover;
input Geo:$2. Country:$40.;
label Geo="Country Code" Country="Reporting Country";
datalines;
AT Austria
AT Austria
AT Austria
AT Austria
AT Austria
;;;;
NOTE: There were 5 observations read from the data set PG1.EU_OCC.
NOTE: DATA statement used (Total process time):
real time 0.00 seconds
cpu time 0.00 seconds
250
251 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
263 How can I recover the original file? It is necessary for other stages of the course. I have tried to create a new library, called PG2 but it just makes a copy of PG1. Any suggestions?
... View more