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
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
What do you know about sas data set?
What sas features do you use to check errors and data validation?
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
explain the use of % includes a statement in sas? : Sas-administrator
How to include or exclude specific variables in a data set?
How to create list output for cross-tabulations in proc freq?
Did you used proc test? when?
How to limit decimal places for the variable using proc means?
what is the difference between floor and ceil functions in sas? : Sas-administrator
State the difference between INFORMAT and FORMAT ?
sas implementing companies in pune implementing clinical projects if anyone knows plz send ans immediately
do you need to know if there are any missing values? : Sas programming
what does the run statement do? : Sas programming
why is sas considered self-documenting? : Sas programming