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

filename indata 'c:\test_input.txt';
data _null_;
infile indata;
file 'c:\test_output.txt';
input;
put _infile_;
run;

Is This Answer Correct ?    11 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what can you learn from the sas log when debugging? : Sas programming

824


what is enterprise guide? What is the use of it? : Sas programming

746


What is the role of sas grid administrator? : sas-grid-administration

1049


Can you execute macro within another macro? : sas-macro

737


What are the uses of sas?

904


How many data types are there in SAS?

808


explain the difference between proc means and proc summary?

868


What was the last computer book you purchased? Why?

2086


what do you mean by data staging area? : Sas-di

819


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

744


State the difference between INFORMAT and FORMAT ?

811


How do dates work in sas?

852


Which command is used to perform sorting in sas program?

783


what is PhaseIII, ODS, TLG, Macro and Proc in SAS

4127


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

1009