Meta Search
search across all the following databases:
Data Catalog
Data and documentation
KnowledgeBase
Common questions and answers.
Resources
Entire collection of data resources.
Measuring Marriage & Divorce among Same-Sex Couples
I am trying to read a SAS system file and I am failing. And, I'm losing the data I am trying to read in.
Here is your input statement:
libname class T:\test';
data class.test;
set class.test;
run;
proc contents;
Here is what you need:
libname class T:\test';
data class.testx;
set class.test;
run;
proc contents'
Once you make a lot of recodes to the original system file - test they will be found in the new system file testx.