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 are the five ways to do a table lookup in sas? : sas-grid-administration
What do you know about symput and symget?
what is the one statement to set the criteria of data that can be coded in any step? : Sas programming
If a variable contains only numbers, can it be a character data type?
what is a method for assigning first.var and last.var to the by groupvariable on unsorted data? : Sas programming
Tell e how how dealt with..
why is sas considered self-documenting? : Sas programming
Difference between informat and format?
How do dates work in sas?
Explain bmdp procedure?
describe about physical data integration? : Sas-di
Mention the category in which sas informats are placed?
Explain what is the use of proc gplot?
Difference between SAS STATA & SPSS?
Difference between sum function and using “+” operator?