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

Are you involved in writing the inferential analysis plan? Tables specfications?

1733


Describe the ways in which you can create macro variables? : sas-macro

568


What are the different servers in sas? : sas-grid-administration

592


Do you need to rearrange the order of the data for the report?

1825


Mention the difference between ceil and floor functions in sas?

635






Name validation tools used in SAS

679


How sas treats the dsd delimiters?

708


What is the general format of function in sas? : sas-grid-administration

556


Did you used proc test? when?

1566


Mention common programming errors committed in sas ?

640


what is broad cast agent? : Sas-bi

589


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

734


what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming

713


explain the use of % includes a statement in sas? : Sas-administrator

540


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

792