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 / durga g
DATA step copies records from the input file to the output
file without creating any SAS variables:
data _null_;
infile file-specification-1;
file file-specification-2;
input;
put _infile_;
run;
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
List down the reasons for choosing sas over other data analytics tools.
hi all, I need the SAS DI DUMP(A00 260) for attending the certification. if any one have, pls provide it.Please Email to vrpotluri@hotmail.com. Thanks - Ramana
How to create list output for cross-tabulations in proc freq?
Explain what is data step?
What is the difference between SAS functions and procedures?
How you can read the variables that you need?
What is the difference between match merge and one to one merge?
Of all your work, where have you been the most successful?
What is the difference between where and if statement?
What are the data types does SAS contain?
how to do user inputs and command line arguments in sas?
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
Explain the purpose of substr functions in sas programming.
How do dates work in SAS data?
what are the best practices to process the large data sets in sas programming? : Sas-administrator