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 / nandu
data test ;
infile "Path";
input var1 var2 var3 ;
file print 'path';
put @1 var1 @10 var2 ;
run;
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
How do you convert basic cube to transaction cube and transaction cube to basic cube?
How do you test for missing values?
Tell me more about the parameters in macro? : sas-macro
AE datasets names? how many types?
What is the maximum length of the macro variable? : sas-macro
How are numeric and character missing values represented internally?
name several ways to achieve efficiency in your program? : Sas programming
what is data governance? : Sas-di
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
what is sas metadata repository? : Sas-bi
What is the basic structure of a sas program?
How is character variable converted into numeric variable and vice versa?
Mention sas system options to debug sas macros.
what is hierarchy flattening? : Sas-di
Mention some common errors that are usually committed in sas programming.