
DSDR KB:
Q:
I need a reminder of how to read *.ssd01 files in SAS?
A:
Here's some code to read in an *ssd01 file:
libname lib 'w:\lisan\Training';
data a;
set lib.test;
proc freq;
tables sex race;
run;
The name of the *.ssd01 file is test.ssd01 It is located in the directory mentioned on the first line of the program.
Related Question Groups:
Notice: Undefined index: REMOTE_HOST in /opt/www/htdocs/psc/dis/data/kb/inc/pageCode_answer.inc on line 165