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 / sumit

data _null_;
infile 'path';
input;
file 'destination path';
put _infile_;
run;

Is This Answer Correct ?    16 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how does sas handle missing values in functions? : Sas programming

816


How do you control the number of observations and/or variables read or written?

997


what does the run statement do? : Sas programming

769


Explain what is data step?

922


If you use a symput in a data step, when and where can you use the macro variable? : sas-macro

815


If you were told to create many records from one record, show how you would do this using array and with proc transpose?

1132


Name few SAS functions?

867


Name types of category in which SAS Informats are placed?

921


Why and when do you use proc sql?

959


Describe a time when you were really stuck on a problem and how you solved it?

2412


What is the maximum and minimum length of macro variable

905


what is proc Index? and what is proc document?

2215


How to convert a numeric variable to a character variable?

859


what are the best practices to process the large data sets in sas programming? : Sas-administrator

768


Explain substr function?

776