|
Duck-Hye Yang <dyang@CHAPINHALL.ORG> wrote:
> How can I read this old file named "crnlink.ssd01"?
> The following code did not work:
> ----------------------------------------
> libname master '/match/peoplematch/';
> proc print data=master.crnlink (obs=100);run;
That's a SAS V6 data set. You should have looked at the log and seen
what the error was. Try this variant of your own code:
libname master v6 '/match/peoplematch/';
proc print data=master.crnlink (obs=100);run;
However, you may not have the path to the directory specified quite
right, either. The SAS log will tell you more information as you
run this code.
HTH,
David
--
David Cassell, CSC
Cassell.David@epa.gov
Senior computing specialist
mathematical statistician
|