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 slowly changing dimension? : Sas-di
Define run-group processing?
Which function is used to count the number of intervals between two sas dates?
what is the limit of the number of the rows and columns available in the worksheet? : Sas-bi
In ARRAY processing, what does the DIM function do?
What was the last computer book you purchased? Why?
For clinical entire study how many tables will create approx?
Enlist the functions performed by sas.
Difference between informat and format?
How would you identify a macro variable? : sas-macro
what is intially documentation in sas?
Explain the use of proc print and proc contents?
Of all your work, where have you been the most successful?
How we can call macros with in data step? : sas-macro
Give some examples where proc report’s defaults are same as proc print’s defaults?