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 / sas developer
DATA _NULL_;
INFILE 'C:FILESINPUT.TXT' MISSOVER TRUNCOVER;
INPUT BLOCK $100.; /* This is length of the record. Change to suit your file*/
FILE 'C:FILESOUTPUT.TXT';
PUT BLOCK;
RUN;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is the difference between floor and ceil functions in sas? : Sas-administrator
What does PROC print, and PROC contents do?
Explain translate function?
Of all your work, where have you been the most successful?
What is the difference between input and infile statement?
What are the new features included in the new version of SAS Programming Language?
What is the basic structure of the SAS base program?
What is by-group processing?
Mention few capabilities of sas framework.
What are common programming errors committed in sas
What are the difficulties u faced while doing vital signs table or dataset?
is data integration and etl programming is same? : Sas-di
explain what is data set in sas? : Sas-administrator
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
what are the scrubbing procedures in sas? : Sas programming