how to import XTP files into SAS datasets?
Answer Posted / prashanthi.a
libname xptfile xport "&libname\test.xpt";
libname sasfile2 "&libname\new\";
proc copy in=xptfile out=sasfile2 memtype=data;
run;
for example:
libname xptdmg xport 'C:\Documents and Settings\user2\My
Documents\pk_analysis\Work\02data_raw\dmg.xpt';
proc copy in=xptdmg out= rawdata memtype= data;
run;
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Name few SAS functions?
How you can read the variables that you need?
How do you define proc in sas? : sas-grid-administration
What are the table names in oracle database...?
How would you identify a macro variable? : sas-macro
Do you know the features of sas?
What is the function of Stop statement in a SAS Program?
how to generate the test data in sas without input data? : Sas-administrator
How do you specify the number of iterations and specific condition within a single do loop?
What is the difference between input and infile statement?
Describe the function and untility of the most difficult SAS macro that you have written.
What is the purpose of _character_ and _numeric_?
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
Explain data step in SAS
what is slowly changing dimension? : Sas-di