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
Do you know the features of sas?
Explain the purpose of substr functions in sas programming.
What is a pdv and what are its functions?
Can you explain the process of calendar?
What was the last computer book you purchased? Why?
Intern stastical programmer written test
Describe what are the different levels of administrative users in sas? : sas-grid-administration
in the flow of data step processing, what is the first action in a typical data step? : Sas programming
what is proc Index? and what is proc document?
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
What is the function of output statement in a SAS Program?
What sas features do you use to check errors and data validation?
what is the basic structure sas administrator? : Sas-administrator
What are the different types of sas functions?
Give some examples where proc report’s defaults are different than proc print’s defaults?