What statement do you code to tell SAS that it is to write
to an external file?
Answer Posted / jothi sankar
_NULL_ statemnet.
Eg:
DATA
_NULL_;
SET MYDATA;
FILE '<FILE-LOCATION>';
PUT var1 var2 var3 ... varn;
RUN;
Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Explain the difference between nodup and nodupkey options?
Name few SAS functions?
what does the run statement do? : Sas programming
What is a put statement?
Why and when do you use proc sql?
what is hierarchy flattening? : Sas-di
In sas, what are the areas that you are most interested in? : sas-grid-administration
If a variable contains only numbers, can it be a character data type?
What is the general format of function in sas? : sas-grid-administration
What is the difference between using drop = data set option in data statement and set statement?
What is substr function?
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
What is PDV?
For what purposes have you used sas macros? : sas-macro
Tell me more about the parameters in macro? : sas-macro