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 by-group processing?
for whom is sas data integration studio designed? : Sas-di
What is the command used to find missing values?
How can you create a macro variable with in data step? : sas-macro
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
what other sas products have you used and consider yourself proficient in using? : Sas programming
how can you create zero observation dataset? : Sas programming
How does the internal authentication work in sas? : sas-grid-administration
How are numeric and character missing values represented internally?
What is the maximum and minimum length of macro variable
what has been your most common programming mistake? : Sas programming
what is data governance? : Sas-di
What will calendar procedure do?
What can be the size of largest dataset in SAS?
Differentiate between proc means and proc summary.