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 / prakash hullathi
DATA step copies records from the input file to the output
file without creating any SAS variables:
data _null_;
/*To read the external taw data file*/
infile 'file-specification-1';
input var1 var2 $ var3;
/*To write the external raw data file*/
file 'file-specification-2';
put var1 var2 var3;
run;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain what Proc glm does?
what is the Population you used in your project, is it ITT or PP?
what does the run statement do? : Sas programming
What is the use of function Proc summary?
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
What does the RUN statement do?
: and & modifiers.
What are the default statistics that proc means produce?
what is SAS OPTIMIZATION?
what is sas business intelligence? : Sas-bi
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 does the trace option do?
what are _numeric_ and _character_ and what do they do? : Sas programming
What are the five ways to do a table lookup in sas? : sas-grid-administration
How substr function works in sas?