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 to test the debugging in sas?

610


what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi

631


Mention what are the data types does SAS contain?

697


what are the types of interactive display types? : Sas-bi

656


Enlist the functions performed by sas.

676






What is maximum number of rows and cols can be handled in SAS?

854


how to do user inputs and command line arguments in sas?

2428


What do the put and input function do?

589


What do you know about symput and symget?

731


What is the difference between input and infile statement?

684


Give some ways by which you can define the variables to produce the summary report (using proc report)?

599


what are validation tools that are used in sas? : Sas-administrator

593


What was the last computer book you purchased? Why?

1912


What do the sas log messages “numeric values have been converted to character” mean? What are the implications?

719


Explain data_null_?

609