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
Explain why double trailing @@ is used in input statement?
: and & modifiers.
where are dashboard components are created and maintained? : Sas-bi
What is the difference between %put and symbolgen? : sas-macro
Which command is used to save logs in the external file?
what is broad cast agent? : Sas-bi
what is sas database server? : Sas-di
What are the difference between the sas data step and sas procs?
If you need the value of a variable rather than the variable itself what would you use to load the value to a macro variable? : sas-macro
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
describe about physical data integration? : Sas-di
how to generate the test data in sas without input data? : Sas-administrator
is data integration and etl programming is same? : Sas-di
What are the default statistics for means procedure?
List out some key concept of SAS