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
what is sas metadata repository? : Sas-bi
What is the differnce between SDTM 3.1.2 to 3.1.1 version
how the sas basic syntax style described? : Sas-administrator
How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data?
what is star schema? : Sas-di
Are you sensitive to code walk-throughs peer review or QC review?
What is the difference between where and if statement?
For a user to have access to a standard workspace server, is internal authentication alone is sufficient? : sas-grid-administration
what is the use of sas management console? : Sas-di
What are the default statistics that proc means produce?
Explain append procedure?
what is the purpose of _error_? : Sas programming
what is ae onset date n what is RDS
describe how to adjust the performance of data integrator? : Sas-di
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?