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
What is the general format of function in sas? : sas-grid-administration
What’s the difference between var b1 – b3 and var b1 — b3?
Give some ways by which you can define the variables to produce the summary report (using proc report)?
Explain the special input delimiters used in sas programming.
how to do user inputs and command line arguments in sas?
what is slowly changing dimension? : Sas-di
how do you debug and test your sas programs? : Sas programming
What is the use of divide function?
Which command is used to save logs in the external file?
What does P-value signify about the statistical data?
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
what is the primary data source for the wrs? : Sas-bi
for what purpose would you use the retain statement? : Sas programming
Do you know the features of sas?
what is information maps?