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 / sumit
data _null_;
infile 'path';
input;
file 'destination path';
put _infile_;
run;
Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
how does sas handle missing values in functions? : Sas programming
How do you control the number of observations and/or variables read or written?
what does the run statement do? : Sas programming
Explain what is data step?
If you use a symput in a data step, when and where can you use the macro variable? : sas-macro
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
Name few SAS functions?
Name types of category in which SAS Informats are placed?
Why and when do you use proc sql?
Describe a time when you were really stuck on a problem and how you solved it?
What is the maximum and minimum length of macro variable
what is proc Index? and what is proc document?
How to convert a numeric variable to a character variable?
what are the best practices to process the large data sets in sas programming? : Sas-administrator
Explain substr function?