If reading an external file to produce an external file,
what is the shortcut to write that record without coding
every single variable on the record?
Answer Posted / prakhar sadafal
Use the _infile_ option in the put statement
view sourceprint?
filename some 'c:cool.dat';
filename cool1 'c:cool1.dat';
data _null_;
infile some;
input some;
file cool1;
put _infile_;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
In SAS explain which statement does not perform automatic conversions in comparisons?
what is sas metadata repository? : Sas-bi
what is the difference between infile and input? : Sas-administrator
what does the run statement do? : Sas programming
what can you learn from the sas log when debugging? : Sas programming
Name few SAS functions?
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
Enlist the functions performed by sas.
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
What is the work of tranwrd function?
what versions of sas have you used (on which platforms)? : Sas programming
What are the difference between sas functions and procedures?
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
How would you define the end of a macro?
What makes sas stand out to be the best over other data analytics tools?