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
What is SAS?
What is the use of function Proc summary?
How to test the debugging in sas?
What is the use of %include statement?
How would you define the end of a macro?
what does the run statement do? : Sas programming
What is program data vector (pdv)?
How long can a macro variable be? A token? : sas-macro
Give some examples where proc report’s defaults are same as proc print’s defaults?
explain the key concept of sas? : Sas-administrator
Describe the function and untility of the most difficult SAS macro that you have written.
What are the ways in which macro variables can be created in sas programming?
why a stop statement is needed for the point= option on a set statement?
what versions of sas have you used (on which platforms)? : Sas programming
Which command is used to perform sorting in sas program?