how to import XTP files into SAS datasets?
Answer / 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 |
what is the difference between nodup and nodupkey options? : Sas programming
Under what circumstances would you code a SELECT construct instead of IF statements?
what are validation tools that are used in sas? : Sas-administrator
What is program data vector (pdv) and what are its functions?
What is maximum storage capability of SAS?
what does the run statement do? : Sas programming
What is the difference between class statement and by statement in proc means?
Can we use where and having clauses in a single SAS program. ex: proc sql; select a,b,c from test where state in 'KA' and having <some condition>. Is the above program run correctly, if not why ?
How would you identify a macro variable?
I am having a stored process.it needs to route my report to both hthml and Xls.By default SP routes to html.I used the PRINTTO to route the html to Xls.BUt it createsthe file not but no content was written to file(0KB)?how can i do it?
What is difference between N and n????
in data set200 observation how to take 110,150,170 using sql procedure?