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 / sumit
data _null_;
infile 'path';
input;
file 'destination path';
put _infile_;
run;
| Is This Answer Correct ? | 16 Yes | 2 No |
Post New Answer View All Answers
What do the PUT and INPUT functions do?
how would you create multiple observations from a single observation? : Sas programming
Name some categories in sas 9? : sas-grid-administration
What is the purpose of trailing @ and @@? How do you use them?
If you could design your ideal job, what would it look like?
: and & modifiers.
what are several options for creating reports in web report studio? : Sas-bi
What is the different between functions and PROCs that calculate the same simple descriptive statistics?
Differentiate between ceil and floor functions.
explain the key concept of sas? : Sas-administrator
Which command is used to perform sorting in sas program?
Give some examples where proc report’s defaults are same as proc print’s defaults?
Enlist the syntax rules followed in sas statements.
how does sas handle missing values in a merge? : Sas programming
What is program data vector (pdv)?