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 / durga g
DATA step copies records from the input file to the output
file without creating any SAS variables:
data _null_;
infile file-specification-1;
file file-specification-2;
input;
put _infile_;
run;
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
what are sas/access and sas/connect? : Sas programming
what is data access? : Sas-di
What is SAS informats?
describe about metadata object? : Sas-di
how the sas basic syntax style described? : Sas-administrator
what are the scrubbing procedures in sas? : Sas programming
what are some problems you might encounter in processing missing values? In data steps? Arithmetic? Comparisons? Functions? Classifying data? : Sas programming
If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?
What is the differnce between SDTM 3.1.2 to 3.1.1 version
If money were no object, what would you like to do?
Explain data step in SAS
How to convert a numeric variable to a character variable?
What are the features of base sas system?
what is hierarchy flattening? : Sas-di
Did you used proc test? when?